GitLab Markdown - How To Centre Title

Hi,

I have a README.md file that is based upon the following markdown code listed below.

Copying this markdown into https://pandao.github.io/editor.md/en.html renders the title as centred.

However, in my repository at gitlab.com the repository is not rendered. How is it possible to render a centred title for a README.md file at gitlab.com?

<div alig="center">
  <center><h1>My title</h1></center>
</div>

<br/>

<div align="center">

<b>My subclass</b>

</div>

# My Section Header

Solved, it was a typo…incorrect spelling of align in first div block. Not sure why online renderer still rendered it though…

<div align="center">
  <center><h1>My title</h1></center>
</div>

<br/>

<div align="center">

<b>My subclass</b>

</div>

# My Section Header