<!DOCTYPE html>
<html>
<head>
</head>
<body>
</body>
</html>
<!DOCTYPE html>
<html>
<head>
<title> This is the title of the page</title>
</head>
<body>
<h1> The page Title here Too!</h1>
Most browsers do
not
care about whitespace
in the docuemnt.
<br>
But they respond to <b>markup.</b>
<br>
<h4>What does a <pre> Tag Do?</h4>
<pre>
But space inside a <pre>
block is maintained. <em>Most tags
still work however</em>
</pre>
</body>
</html>
<!DOCTYPE html> <html> <head> <title> A link</title> </head> <body> A link to <a href="demo2.html">demo2 </a>. </body> </html>