Search code examples
htmlcssalignment

<p and <h2 align=center not working


My code on kodle.co.uk/HTML is not working. The

and tags are not working. Image below.

Thanks, Harry code


Solution

  • Use CSS like so:

    <style>
    p, h2{
         text-align: center;
    }
    </style>
    

    Or inline CSS:

    <p style="text-align:center;"> </p>
    <h2 style="text-align:center;"> </h2>