|
Learn
HTML - Lesson 6
I think we'll continue by learning something
about the way a browser works. First an
example...
<body>
My web page is kool
like me !
</body>
<body>
Hey !
Are
you
kool ?
</body>
The browser doesn't recognize formatting.
Unless you tell it otherwise, it just displays
the characters in a steady stream. If you
want to start a new line you have to use
a line break.
<body>
Hey!
<br>Are
<br>you
<br>kool
?
</body>
Tag <br> basically says - start a
new line. You use <br> to skip a line.
<body>
Hey!
<br>Are
<br>you
<br>
<br>kool
<br>
<br>Buddy ??
</body
|