Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

<!

DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>WELCOME TO HAFEEZ ASSIGNMENT WEBPAGE</title>
</head>
<body>
<!-- Main Heading -->
<h1>Welcome to Hafeez Webpage</h1>

<!-- Paragraph describing the purpose of the webpage -->


<p>This webpage is created as part of an assignment to learn the basics of HTML
structure, including how to add headings, paragraphs, lists, links, and tables.</p>

<!-- Unordered List with three items -->


<ul>
<li>Introduction to HTML</li>
<li>Basic HTML Elements</li>
<li>Creating a Simple Webpage</li>
</ul>

<!-- Link to another webpage -->


<p>For more information on HTML, visit <a
href="https://www.w3schools.com/">W3Schools</a>.</p>

<!-- Table with headers and data rows -->


<table border="1">
<tr>
<th>Course</th>
<th>Duration</th>
<th>Instructor</th>
</tr>
<tr>
<td>HTML Basics</td>
<td>3 Weeks</td>
<td>Ashmal Noor</td>
</tr>
<tr>
<td>CSS Fundamentals</td>
<td>4 Weeks</td>
<td>Qandeel</td>
</tr>
<tr>
<td>JavaScript Essentials</td>
<td>5 Weeks</td>
<td>Ayesha Sheraz</td>
</tr>
</table>
</body>
</html>

You might also like