HTML GUIDE
Learn Html Quickly
Basics of Html:
● “Html” or “Hypertext markup language” is used to create content for
the web. It also provides way to define the Structure and content of
web pages and applications
● Html uses a system of tags to define different elements within a web
page, such as heading, paragraphs, links, images, and forms. These
tags enclosed in angle brackets (<>) and typically have attributes that
provide additional information about element
For example:
To create a heading in html, you would use
the <h1> tag like this
<h1>This is a heading</h1>
● This is html structure:
<!DOCTYPE html>
<html>
<body>
<h1>This Is Heading</h1>
<p>Type anything about you as a paragraph.</p>
</body>
</html>
Save this file as html file
And open it on your browser
This will show the output like this:
Learn Html Quickly
Basics of Html:
● “Html” or “Hypertext markup language” is used to create content for
the web. It also provides way to define the Structure and content of
web pages and applications
● Html uses a system of tags to define different elements within a web
page, such as heading, paragraphs, links, images, and forms. These
tags enclosed in angle brackets (<>) and typically have attributes that
provide additional information about element
For example:
To create a heading in html, you would use
the <h1> tag like this
<h1>This is a heading</h1>
● This is html structure:
<!DOCTYPE html>
<html>
<body>
<h1>This Is Heading</h1>
<p>Type anything about you as a paragraph.</p>
</body>
</html>
Save this file as html file
And open it on your browser
This will show the output like this: