-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsuhaib.html
More file actions
35 lines (31 loc) · 860 Bytes
/
suhaib.html
File metadata and controls
35 lines (31 loc) · 860 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>My First Webpage</title>
</head>
<body>
<header>
<h1>Welcome to My Website!</h1>
</header>
<nav>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Contact</a></li>
</ul>
</nav>
<section>
<h2>About Me</h2>
<h3>Ashish Kumar </h3>
<h3> Abdul Samad </h3>
<p>This is a basic HTML page where I will introduce myself and share some information.</p>
</section>
<h2>Added by suhaib</h2>
<footer>
<p>© 2025 My Website. All Rights Reserved.</p>
</footer>
</body>
</html>