Lesson 2: Font Tags
(Special Characters)

This example uses the special character "©" to produce the copyright symbol.

<!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>
<b>
Content is copyright 1996-2012&copy;
</b>
</center>
</body>
</html>