0% found this document useful (0 votes)
11 views1 page

Understanding HTML Page Structure

The document explains the basic structure and tags of an HTML document, including the <DOCTYPE>, <html>, <head>, <title>, <body>, <h1>, and <p> tags, with the <DOCTYPE> declaring the document type, <html> wrapping the document, <head> providing metadata, <title> giving the page a title, <body> containing the visible content, <h1> for headings, and <p> for paragraphs. It concludes that a browser can display a document using this structure with a heading and paragraph.

Uploaded by

tplinklg
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
11 views1 page

Understanding HTML Page Structure

The document explains the basic structure and tags of an HTML document, including the <DOCTYPE>, <html>, <head>, <title>, <body>, <h1>, and <p> tags, with the <DOCTYPE> declaring the document type, <html> wrapping the document, <head> providing metadata, <title> giving the page a title, <body> containing the visible content, <h1> for headings, and <p> for paragraphs. It concludes that a browser can display a document using this structure with a heading and paragraph.

Uploaded by

tplinklg
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd

Example Explained

The DOCTYPE declaration defines the document type to be HTML


The text between <html> and </html> describes an HTML document
The text between <head> and </head> provides information about the document
The text between <title> and </title> provides a title for the document
The text between <body> and </body> describes the visible page content
The text between <h1> and </h1> describes a heading
The text between <p> and </p> describes paragraph

Using this description, a web browser can display a document with a heading and a paragraph.

HTML Tags
HTML tags are keywords (tag names) surrounded by angle brackets:

You might also like