Standard Layout

The standard layout of an HTML page contains the following tags (in this specific order):

<html>
<head>
</head>
<body>
</body>
</html>

The <html> tag tells the Internet browser to treat the document as an HTML document. The <head> of an HTML document contains important information about the document, such as the title and/or scripts. The <body> contains the content that will be displayed on the viewer's computer screen.

Back Continue