Week 1 Day 2: HTML Introduction
This commit is contained in:
36
Week-1/Day-2/example.html
Normal file
36
Week-1/Day-2/example.html
Normal 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>
|
||||
Reference in New Issue
Block a user