Lesson 1: Basic HTML Tags
(Minimal HTML)

Text that is not part of an HTML tag is displayed by the browser.


<!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>
Welcome to the world of HTML!
</body>
</html>