+ 1
Why is my code font growing like this?
I am in the introductory HTML course. I am doing my best to follow along with the lesson, but the way my code is outputting is really bothering me. It seems like the font is growing for no reason. What am I doing wrong? https://code.sololearn.com/WdlHkZ2iaIsM/#
2 Respostas
+ 3
You are not closing tags in right way, so browser/sololearn compiler dont know where to end tag and it make this problem.
So it is </h1> not <h1/> and so on, you repeat this in neer every closing tag
+ 3
That was it! Thanks for the insight everyone.