-
Notifications
You must be signed in to change notification settings - Fork 0
/
Pers-web.html
38 lines (34 loc) · 1.13 KB
/
Pers-web.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Saumyamani Bhardwaz - Personal Webpage</title>
<!-- Add your CSS styles or link to an external stylesheet here -->
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<h1>Saumyamani Bhardwaz</h1>
<nav>
<ul>
<li><a href="#about">About</a></li>
<li><a href="#resume">Resume</a></li>
<!-- Add more navigation links as needed -->
</ul>
</nav>
</header>
<section id="about">
<h2>About Me</h2>
<!-- Add a brief introduction about Saumyamani here -->
</section>
<section id="resume">
<h2>Resume</h2>
<!-- Add the resume content here, you can use the same content as provided earlier -->
</section>
<!-- Add more sections for projects, contact information, etc., as needed -->
<footer>
<p>Contact me at: <a href="mailto:[email protected]">[email protected]</a></p>
</footer>
</body>
</html>