The HTML tag basically indicates that the markup language used in the document is HTML, and the Body indicates the actual content of the Web page.
When using the tags they would look like:
<html>
<head>
(specify any header information such as title, meta tags, and CSS files here)
</head>
<body>
(The actual content of the Web page should go here)
</body>
</html>
|