Lesson 1: Basic HTML Tags
(Line Breaks)

Without "line break" tags, text that appears on separate lines in an HTML file will be displayed on the same line 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 bgcolor="#bdbdbd" text="black">
This text will
all end up on
the same line.
</body>
</html>