[go: up one dir, main page]

0% found this document useful (0 votes)
25 views2 pages

Examples: Heading, Paragraph, Table and So On

The document defines HTML as a markup language that describes web page structure using elements like <html>, <head>, <title>, <body>, <h1>, and <p>. These HTML elements are represented by tags and act as building blocks to label different parts of content, while browsers use these tags to display the rendered page content without showing the tags themselves.

Uploaded by

Ebad Shaikh
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)
25 views2 pages

Examples: Heading, Paragraph, Table and So On

The document defines HTML as a markup language that describes web page structure using elements like <html>, <head>, <title>, <body>, <h1>, and <p>. These HTML elements are represented by tags and act as building blocks to label different parts of content, while browsers use these tags to display the rendered page content without showing the tags themselves.

Uploaded by

Ebad Shaikh
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/ 2

Examples

 < !DOCTYPE html> (This Document to be HTML5)


 <html> (Root element of an html page)
 <head> (Meta information about the document)
 <title> (Title for the document)
 <body> (The visible page content)
 <h1> (Large Heading)
 <p> (Paragraph define)

What is HTML?
● HTML stands for Hyper Text Markup Language.
● HTML describes the structure of WebPages using
markup.
● HTML elements are the building blocks of HTML
pages.
● HTML elements are represented by tags.
● HTML tags label pieces of content such as
HEADING,PARAGRAPH,TABLE and so on.
Examples
 < !DOCTYPE html> (This Document to be HTML5)
 <html> (Root element of an html page)
 <head> (Meta information about the document)
 <title> (Title for the document)
 <body> (The visible page content)
 <h1> (Large Heading)
 <p> (Paragraph define)

● Browsers do not display the HTML tags,


but use them to render the content of the
page.

You might also like