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

HTML

HTML elements are the building blocks of web pages. The document defines the page as HTML5 using <!DOCTYPE html>. Key elements include <html> as the root element, <title> for the page title, and <body> containing the visible content which can include headings like <h1> and paragraphs <p>.

Uploaded by

sushil soni
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)
33 views1 page

HTML

HTML elements are the building blocks of web pages. The document defines the page as HTML5 using <!DOCTYPE html>. Key elements include <html> as the root element, <title> for the page title, and <body> containing the visible content which can include headings like <h1> and paragraphs <p>.

Uploaded by

sushil soni
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
You are on page 1/ 1

Example Explained

HTML elements are the building blocks of HTML pages.

 The <!DOCTYPE html> declaration defines this document to be


HTML5
 The <html> element is the root element of an HTML page
 The lang attribute defines the language of the document
 The <meta> element contains meta information about the document
 The charset attribure defines the character set used in the document
 The <title> element specifies a title for the document
 The <body> element contains the visible page content
 The <h1> element defines a large heading
 The <p> element defines a paragraph

You might also like