Lesson 2: Font Tags
(Special Characters)

Use the "non-breaking space" special character ( ) to add extra spaces that would normally be ignored. It can also be used to keep text together that might otherwise break across lines.

<!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">
Give me S        P        A        C        E<br />
Give me S  &nbsp;  P  &nbsp;  A  &nbsp;  C  &nbsp;  E<br />

</html>