HTML 4 Kids: Lesson Week 3

Line Formatting

Centering Lines

Center a Block of HTML
<center>
...lines of HTML code here...
</center>

Center a Single Line
<p align="center">
<h1 align="center">

Right Justify a Single Line
<p align="right">
<h1 align="right">

Character Formatting

Bold
<b>Text Goes Here </b>
Italic
<i>Text Goes Here</i>
Underline
<u>Text Goes Here </u>
Return