Files
Harshit-Sachdev/Week-1/Day-2/example.html

37 lines
643 B
HTML

<!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>