Week 1 Day 2: HTML Introduction

This commit is contained in:
2025-12-17 16:00:05 +05:30
parent 0b17315d53
commit f834744e2a
4 changed files with 123 additions and 0 deletions

36
Week-1/Day-2/example.html Normal file
View File

@@ -0,0 +1,36 @@
<!DOCTYPE html>
<html>
<head>
<title>HTML Basics Practice</title>
</head>
<body>
<h1>HTML Basics</h1>
<p>This example shows basic HTML tags.</p>
<h2>Text Formatting</h2>
<strong>Bold text</strong>
<em>Italic text</em>
<h2>Image</h2>
<img src="image.jpg" alt="Sample Image">
<h2>Link</h2>
<a href="https://www.google.com/">Google</a>
<h2>List</h2>
<ul>
<li>Unordered list item</li>
</ul>
<ol>
<li>Ordered list item</li>
</ol>
<h2>Table</h2>
<table border="1">
<tr><th>Header</th></tr>
<tr><td>Cell</td></tr>
</table>
</body>
</html>