0
tag ignored
Is necessary use </p> in this code? <html> <head> <title>Attributes</title> </head> <body> <p align="center">This is a text <br /> <hr width="10%" align="right" /> This is also a text. </p> </body> </html> When I tried put in the code playground appeared "unexpected end tag (p). ignored"
2 ответов
+ 10
it's <br> and not <br/>
+ 3
It's giving you that error because you put the horizontal rule <hr> inside of it. Should still work as expected though.