next up previous contents
Next: Summary of Basic HTML Up: HTML Tags Previous: HTML Tags

Basic HTML Page Structure

We can now meet or first three HTML tags html, head and body

Note that these specify the basic anatomy of every HTML page.

<html>
<head>
head elements go here
</head>
<body>
body elements go here
</body>
</html>



dave@cs.cf.ac.uk