-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
34 lines (34 loc) · 1.23 KB
/
about.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About - Bhargav Kumar Saha</title>
<link rel="stylesheet" href="styles.css">
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<script src="script.js"></script>
</head>
<body>
<header>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="projects.html">Projects</a></li>
<li><a href="resume.html">Resume</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
</header>
<main>
<section class="about">
<h1>About Me</h1>
<img src="profile.jpeg" alt="Bhargav Kumar Saha" class="profile-image">
<p>I am currently pursuing my B.E in Computer Science Engineering at KNS Institute of Technology, affiliated with VTU University. I am passionate about programming and have experience with various languages and technologies.</p>
</section>
</main>
<footer>
<p>© 2024 Bhargav Kumar Saha</p>
</footer>
</body>
</html>