Page 1 of 1

HTML for sodales, LESSON 3

PostPosted: Sun Dec 05, 2004 9:23 am
by Lucius Tyrrhenus Garrulus
LESSON 3

MAKING TEXT BOLD, ITALIC AND UNDERLINE


In HTML there are special tags you need to wrap around text in order to make them bold, italic or underline.

Bold tags look like this: <b></b>

Italic tags look like this: <i></i>

Underline tags look like this: <u></u>


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

2) Wrap a pair of bold tags around the word "hello."

3) Wrap a pair of italic tags around the word "is."

4) Wrap a pair of underline tags around the word "SocietasViaRomana." Notepad should look like this:

Code: Select all
<html>

<head>

<title>
SocietasViaRomana
</title>

</head>

<body>

<b>Hello</b> my name <i>is</i> Lucius.
<br>
I am a member of <u>SocietasViaRomana</u>.

</body>

</html>



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


Note: It is generally considered proper that you only use underline on links so as not to confuse visitors to your page.