+ 2
How do u write yay on the first line and noob on the second line. If u run the code it comes as a single line
4 Answers
+ 5
use a break element
<body>
yay
<br>
noob
</body>
+ 6
oh ty I just started
+ 6
You can use the <br/> tag to create a line break, or you can put both "yay" and "noob" in separate <p> tags.
By the way, move "yay" into the <body> tag. Having it in the <head> tag works, but is invalid.
Ex:
<p>yay<br/>noob</p>
OR
<p>yay</p>
<p>noob</p>
+ 1
oh ok