Hi guys - really easy question from a beginner…
Am reading the ‘building your own web site the right way’ 2nd edition. Really appreciating the easy to understand style. However, I have typed the code into notepad and opened with firefox, but it displays like this -
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>The Most Basic Web Page in the World</title>
<meta http-equiv="Content-Type"
content="text/html; charset=utf-8"/>
</head>
<body>
<h1> The Most Basic Web Page in the World</h1>
<p> This is a very simple web page to get you started.
Hopefully you will get to see how the markup that drives
the page relates to th end result that you can see on screen,</p>
<p> This is another paragraph, by the way. Just to show how it
works.</p>
</body>
</html>
I have copied in other code and the same thing happens.
Please Help!! What am I doing wrong?