0% found this document useful (0 votes)
32 views3 pages

Essential HTML Document Structure

The document outlines the basic structure of an HTML document, including <html>, <head>, <title>, and <body> tags. It explains that every HTML page needs a head section containing a <title> for the document name. The bulk of the content goes within the <body> tags. An example is provided of a full HTML document structure with a title in the <head> and sample text in the <body>.

Uploaded by

Dilip Patel
Copyright
© Attribution Non-Commercial (BY-NC)
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOC, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
32 views3 pages

Essential HTML Document Structure

The document outlines the basic structure of an HTML document, including <html>, <head>, <title>, and <body> tags. It explains that every HTML page needs a head section containing a <title> for the document name. The bulk of the content goes within the <body> tags. An example is provided of a full HTML document structure with a title in the <head> and sample text in the <body>.

Uploaded by

Dilip Patel
Copyright
© Attribution Non-Commercial (BY-NC)
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOC, PDF, TXT or read online on Scribd

Every HTML document needs a pair of head tags.

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

The only thing we have to concern ourselves with in the head tags (for now) are the title tags.
<html> <head> <title></title> </head> </html>

And the bulk of the page is going to be within the body tags.
<html> <head> <title></title> </head> <body> </body> </html>

Oh, and one more thing, give your document a title, and put something in the body.
<html> <head> <title>My big ole bad page!</title> </head> <body> Hello Joe! </body> </html>

Now save it, not as a text docu

[Link] q=how+to+make+html+pages&ln=en&src=1010&crg=3.1010000.10007&barid={ ccbefb94-0465-11e2-99ce-0015584efc3a}&sf=0

You might also like