0% found this document useful (0 votes)
69 views9 pages

1 Basic Structure and Tags Tags

The document contains information about HTML tags prepared by Abdul Hakeem. It includes the basic structure of HTML, headings, formatting tags, alignment, and other important tags. Examples are provided for common tags like paragraph, headings, underline, italic, and bold.

Uploaded by

ABDUL HAKEEM
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PPTX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
69 views9 pages

1 Basic Structure and Tags Tags

The document contains information about HTML tags prepared by Abdul Hakeem. It includes the basic structure of HTML, headings, formatting tags, alignment, and other important tags. Examples are provided for common tags like paragraph, headings, underline, italic, and bold.

Uploaded by

ABDUL HAKEEM
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PPTX, PDF, TXT or read online on Scribd
You are on page 1/ 9

Prepared By : Abdul Hakeem, 03066712518, Abdulhakeemmughal@gmail.

com, facebook/Learn for Better

HTML Basic Structure


<HTML>
<HEAD>
<TITLE>THIS IS TITLE</TITLE>
</HEAD>

<BODY>

</BODY>
</HTML>

Prepared By : Abdul Hakeem, facebook/Learn for Better, youtube/Abdul Hakeem, 03066712518


Prepared By : Abdul Hakeem, 03066712518, [email protected], facebook/Learn for Better

HTML5 Basic Structure


<!DOCTYPE html>
<html>
<head>
<title>this is title</title>
</head>

<body>

</body>
</html>
Prepared By : Abdul Hakeem, facebook/Learn for Better, youtube/Abdul Hakeem, 03066712518
Prepared By : Abdul Hakeem, 03066712518, [email protected], facebook/Learn for Better

Difference Between HTML and HTML5

<!DOCTYPE html>

Prepared By : Abdul Hakeem, facebook/Learn for Better, youtube/Abdul Hakeem, 03066712518


Prepared By : Abdul Hakeem, 03066712518, [email protected], facebook/Learn for Better

Headings in HTML
There are total 6 headings in html

<h1>This is heading h1</h1>


<h2>This is heading h2</h2>
<h3>This is heading h3</h3>
<h4>This is heading h4</h4>
<h5>This is heading h5</h5>
<h6>This is heading h6</h6>

Prepared By : Abdul Hakeem, facebook/Learn for Better, youtube/Abdul Hakeem, 03066712518


Prepared By : Abdul Hakeem, 03066712518, [email protected], facebook/Learn for Better

Formating in HTML

<p>Paragraph Tag<p/>
<u>Underline Tag</u>
<br>
<i>italic tag</i>
<big>Big tag</big>
<hr>
Prepared By : Abdul Hakeem, facebook/Learn for Better, youtube/Abdul Hakeem, 03066712518
Prepared By : Abdul Hakeem, 03066712518, [email protected], facebook/Learn for Better

Alignment in HTML

<h1 align=“right”>This is Align Right</h1>


<h1 align=“center”>This is Align center </h1>

<h1 align=“left”>This is Align left </h1>

Prepared By : Abdul Hakeem, facebook/Learn for Better, youtube/Abdul Hakeem, 03066712518


Prepared By : Abdul Hakeem, 03066712518, [email protected], facebook/Learn for Better

Formating in HTML

<em>emphasize</em>

<strong>Like Bold tag</strong>

<code>Code tag</code>
Prepared By : Abdul Hakeem, facebook/Learn for Better, youtube/Abdul Hakeem, 03066712518
Prepared By : Abdul Hakeem, 03066712518, [email protected], facebook/Learn for Better

Important Tags in HTML

<del> This is delete tag</del>

<span>This is span tage </span>

<sup> this is super tag</sup>

<sub>this is sub tag</sub>


Prepared By : Abdul Hakeem, facebook/Learn for Better, youtube/Abdul Hakeem, 03066712518
Prepared By : Abdul Hakeem, 03066712518, [email protected], facebook/Learn for Better

Important Tags in HTML

<pre>same output</pre>

<b>Bold Tag</b>

Prepared By : Abdul Hakeem, facebook/Learn for Better, youtube/Abdul Hakeem, 03066712518

You might also like