Lesson 1: Basic HTML Tags
(Text Alignment)

You can also use a stand alone <center> tag to center multiple lines at once.

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<title>Welcome to HTML</title>
</head>

<body bgcolor="#bdbdbd" text="black">
<center>
*********************************
<h2>Welcome to the world of HTML!</h2>
<h3>Your passport to Internet creativity!</h3>
*********************************
</center>
</body>
</html>