Page 1 of 1

HTML for sodales, LESSON 2

PostPosted: Sun Dec 05, 2004 9:21 am
by Lucius Tyrrhenus Garrulus
LESSON 2

BREAK TAGS


In HTML there is a special tag which needs to be inserted when you want to display a new line. This is called the break tag. It looks like this: <br>


1) Open up the document you created in LESSON 1 in Notepad.

2) Type a sentence (any sentence) within the body tags, a break tag, and another sentence. Notepad should look like this:

Code: Select all
<html>

<head>

<title>
SocietasViaRomana
</title>

</head>

<body>

Hello my name is Lucius.
<br>
I am a member of SocietasViaRomana.

</body>

</html>



3) Save this page and view it according to the instructions in Step 6 of LESSON 1.