-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
42 lines (39 loc) · 1.49 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
35
36
37
38
39
40
41
42
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About - Rohit Bansal</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<!-- Header Section -->
<header>
<h1>ROHIT BANSAL</h1>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="education.html">Education</a></li>
<li><a href="certifications.html">Certifications</a></li>
<li><a href="experience.html">Experience</a></li>
<li><a href="skills.html">Skills</a></li>
<li><a href="achievements.html">Achievements</a></li>
<li><a href="projects.html">Projects</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
</header>
<!-- About Section -->
<section id="about">
<h2>About Me</h2>
<p>Welcome to my portfolio! I'm a passionate web developer with experience in HTML, CSS, JavaScript, React.js. I am also exploring DSA and keen to learn new things.</p>
<p>Connect with me on <a href="https://www.linkedin.com/in/rohit-bansal-1b2457286" target="_blank">LinkedIn</a>.</p>
</section>
<!-- Footer Section -->
<footer>
<p>© 2024 Rohit Bansal. All rights reserved.</p>
</footer>
<script src="script.js"></script>
</body>
</html>