HTML Blueprints | index | next | view | peek |

Plan 1:
The Barebones Minimum Web Page

This HTML is the basic structure for any web page. It contains two major parts, the head and the body. Everything inside the body tag is what is displayed within a web page. The head contains additional information about the document that may be used by a web browser.

HTML
NOTES
<html>
Marks start of HTML
<head>
<title>The Bare Minimum Web Page</title>
</head>
The HEAD tag contains information used by a web browser but is not displayed in the page. The TITLE tag marks text which identifies the web page (text displayed in the title bar as well as navigation menus in the web browser)
<body>
BODY tags enclose the entire content that appears in the web page
This is a barebones web page. 

   No frills.
Content of the page. All carriage returns and extra spaces are ignored by the web browser.
</body>
</html>
Closing tags marking the end of the BODY and the entire HTML. Note how these tags are nested inside each other.


View this web page