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.
|
|
|