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

Starting an HTML Document Basics

HTML documents require a <!DOCTYPE html> declaration and consist of an <html> tag wrapping a <body> tag containing the visible content, with all HTML documents starting with <html> and ending with </html> while the visible portion is between <body> and </body>.

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)
3 views1 page

Starting an HTML Document Basics

HTML documents require a <!DOCTYPE html> declaration and consist of an <html> tag wrapping a <body> tag containing the visible content, with all HTML documents starting with <html> and ending with </html> while the visible portion is between <body> and </body>.

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

HTML Basic Examples

Don't worry if these examples use tags you have not learned.
You will learn them in the next chapters.

HTML Documents
All HTML documents must start with a type declaration: <!DOCTYPE html>.
The HTML document itself begins with <html> and ends with </html>.
The visible part of the HTML document is between <body> and </body>.

You might also like