-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresume.html
56 lines (51 loc) · 1.93 KB
/
resume.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
50
51
52
53
54
55
56
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Resume - 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="resume">
<h1>Resume</h1>
<h2>Contact Information</h2>
<p>Email: bhaskarsah878@gmail.com</p>
<p>Phone Number: 9741909314</p>
<p>LinkedIn Profile: <a href="https://www.linkedin.com/in/bhaskar-sah-451628334/">LinkedIn</a></p>
<p>GitHub Profile: <a href="https://github.com/bhargav59">GitHub</a></p>
<h2>Education</h2>
<p>VTU University, 2022-2026</p>
<p>B.E in Computer Science Engineering</p>
<p>KNS Institute of Technology (College)</p>
<h2>Skills</h2>
<p>Programming Languages: C, C++, Java, Python, JavaScript</p>
<p>Technologies: LAMP stack</p>
<p>Tools: VS Code, MS Office</p>
<h2>Projects</h2>
<p>List of projects with brief descriptions</p>
<h2>Work Experience (if any)</h2>
<p>List of work experiences with brief descriptions</p>
<h2>Extracurricular Activities</h2>
<p>List of clubs/organizations, roles, and achievements</p>
</section>
</main>
<footer>
<p>© 2024 Bhargav Kumar Saha</p>
</footer>
</body>
</html>