0
I don't get why it doesn't put the text in p2 to the right? Don't be too critical, this is my first time codingđ
2 Answers
+ 8
There are no tags as p1 or p2 or p3
You can use just <p> tag as many times as you want.
<!DOCTYPE html>
<html>
    <head>
        <title>firsttimecoding</title>
    </head>
    <body>
    <p align="center"><b>This is a bold text<b/></p><br />
    <p align="right"><ins>this is an inserted text</ins></p>
    <hr align="center" width="80%" />
    <p><del>this is a deleted text</del></p>
    </body>
</html>
+ 1
đ« Rick Grimes thank you! That's a useful tip not to number them every time!đ
And it worked with the text position, thanks a lot!



