Looking at HTML From the Top Down
A page with the following text will appear
<html>
<head>
<title>Hello World</title>
</head>
<body>
<p>Hello World.</p>
</body>
</html>
- The words that appear between the <angle brackets> are called tags.
- They give instructions to the web browser to tell it how things should look and other basic information.
- Each tag begins with a word (e.g. <html>) and ends with that same word with a slash in front of it (e.g. /html).
- Tags must be nested inside of each other (i.e. <a><b></b></a> not <a><b></a></b>)