-
Notifications
You must be signed in to change notification settings - Fork 55
/
nikhil.html
49 lines (47 loc) · 1.12 KB
/
nikhil.html
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Nikhil Jangid</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f0f0f0;
}
header {
background-color: #333;
color: #fff;
text-align: center;
padding: 1em 0;
}
.container {
max-width: 800px;
margin: 0 auto;
padding: 20px;
}
h1 {
color: #333;
}
</style>
</head>
<body>
<header>
<h1>Welcome to My Simple Webpage</h1>
</header>
<div class="container">
<h2>About Me</h2>
<p>Hello, I'm a web developer.</p>
<h2>My Hobbies</h2>
<ul>
<li>Reading</li>
<li>Coding</li>
<li>Hiking</li>
</ul>
<h2>Contact</h2>
<p>You can reach me at <a href="nikhiljangid222@email.com">nikhiljangid222@email.com</a></p>
</div>
</body>
</html>