0% found this document useful (0 votes)
13 views8 pages

Assignment 2

The document contains examples of 29 different HTML tags including headings, paragraphs, lists, images, links, tables, forms and more. It provides a sample page with headings, text, images, links and other common HTML elements to demonstrate proper usage of various tags for learning purposes. The page also includes navigation, tables, inputs and a footer.

Uploaded by

saboto3686
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)
13 views8 pages

Assignment 2

The document contains examples of 29 different HTML tags including headings, paragraphs, lists, images, links, tables, forms and more. It provides a sample page with headings, text, images, links and other common HTML elements to demonstrate proper usage of various tags for learning purposes. The page also includes navigation, tables, inputs and a footer.

Uploaded by

saboto3686
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/ 8

<!

DOCTYPE html>

<!-- Tag 1 -->

<html>

<!-- Tag 2 -->

<head>

<!-- Tag 3 -->

<title> Assignment 2 </title>

</head>

<!-- Tag 4 -->

<body>

<!-- Tag 5 -->

<h1>Assigment 1</h1>

<!-- Tag 6 -->

<h2>Assigment 1</h2>

<!-- Tag 7 -->

<h3>Assigment 1</h3>

<!-- Tag 8 -->

<h4>Assigment 1</h4>

<!-- Tag 9 -->

<h5>Assigment 1</h5>

<!-- Tag 10 -->

<h6>Assigment 1</h6>
<!-- Tag 11 -->

<p>

This is a sample paragraph for assignment 1 practice.

</p>

<!-- Tag 12 -->

<strong>Assignment 1</strong>

<!-- Tag 13 -->

<br>

<!-- Tag 14 -->

<em>Assignment 1</em>

<!-- Tag 15 -->

<ul>

<!-- Tag 16 -->

<li>Html</li>

<li>PHP</li>

<li>React</li>

<li>AI</li>

</ul>

<!-- Tag 17 -->

<ol>
<list>Html</list>

<list>PHP</list>

<list>React</list>

<list>AI</list>

</ol>

<!-- Tag 18 -->

<img src="https://image.flaticon.com/icons/png/512/24/24217.png" />

<br>

<!-- Tag 19 -->

<a href="http://www.google.com" target="_blank">Click Here a LINK TAG</a>

<br>

<!-- Tag 19 -->

<button type="button">Click on Me</button>

<br>

<!-- Tag 20 -->

<cite > Useful</cite>

<br>

<!-- Tag 20 -->


<big>Hello World</big>

<br>

<!-- Tag 21 -->

<dl>

<!-- Tag 22 -->

<dt>HTTP</dt>

<dd>Hyper Text Transfer Protocol</dd>

</dl>

<br>

<!-- Tag 23 -->

<del>Deleted Text</del>

<!-- Tag 24 -->

<details open="open">

<!-- Tag 25 -->

<summary>Click here</summary>

<p>Welcome to assignment 2.</p>

</details>

<!-- Tag 26 -->

<dfn>eRozgar Program</dfn> Assignment 1


<br>

<!-- Tag 27 -->

<dialog open="open">

<p> A Dialoge TAG</p>

</dialog>

<br>

<!-- Tag 28 -->

<font face="verdana" size="4" color="blue">Assignment 1</font> <br />

<br>

<!-- Tag 29 -->

<nav>

<a href="../../index.php">Home</a> |

<a href="../tutorial.php">HTML</a> |

<a href="../../css/tutorial.php">PHP</a> |

<a href="../../javascript/tutorial.php">eRozgar</a>

</nav>

<table border="1">

<tr>

<th>Name</th>

<th>Degree</th>

<th>Age</th>

</tr>
<tr>

<td>Abdullah</td>

<td>BSSE</td>

<td>23</td>

</tr>

</table>

<br>

<br>

<table>

<tr>

<td><a href="https://www.google.com" >Home</a></td>

<td><a href="Assignment1.html">About</a></td>

<td>Contact</td>

</tr>

</table>

<br>

<br>

<form>

<label>First Name</label>

<input type="text" placeholder="Enter your First Name">


<br>

<br>

<label>Last Name</label>

<input type="text" placeholder="Enter your Last Name">

<br>

<br>

<label>Email</label>

<input type="email" placeholder="Enter your email">

<br>

<br>

<label>Password</label>

<input type="password" placeholder="Enter your password">

<br>

<br>

<video controls src="https://www.youtube.com/watch?v=hjKO0d_umLc"></video>

<footer>

<p>&copy; Assingment 2 Submitted by: Muhammad Abdullah Safdar</p>

</footer>

</form>
</body>

</html>

You might also like