-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
84 lines (76 loc) · 3.33 KB
/
index.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Portfolio of Manya Bajaj">
<title>Manya Bajaj - Portfolio</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<div class="container">
<h1>Manya Bajaj</h1>
<p>Electronics and Communication Engineering Student | Developer | ML Enthusiast</p>
</div>
</header>
<nav>
<ul>
<li><a href="#about">About</a></li>
<li><a href="#education">Education</a></li>
<li><a href="#projects">Projects</a></li>
<li><a href="#skills">Skills</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
<section id="about">
<div class="container">
<h2>About Me</h2>
<p>Hi! I'm Manya Bajaj, a second-year Electronics and Communication Engineering student at MNIT Jaipur. I love building technology-driven solutions in education and healthcare, and have a passion for machine learning, software development, and problem-solving.</p>
</div>
</section>
<section id="projects">
<div class="container">
<h2>Projects</h2>
<ul>
<li><strong>Enigma Machine</strong> - Python simulation of the Enigma machine with customizable encryption settings.</li>
<li><strong>Security System</strong> - C++ console-based authentication system with secure file handling.</li>
<li><strong>Airbnb Clone</strong> - Full-stack MERN application replicating Airbnb functionalities.</li>
</ul>
</div></section>
<section id="skills">
<div class="container">
<h2>Skills</h2>
<ul>
<li><strong>Languages:</strong> C/C++, Python, HTML, CSS, JavaScript, TypeScript</li>
<li><strong>Frameworks:</strong> Flask, Next.js, Express.js</li>
<li><strong>Libraries:</strong> React.js, NumPy, Pandas</li>
<li><strong>Tools:</strong> Git, GitHub, Linux, VS Code</li>
</ul>
</div>
</section>
<section id="education">
<div class="container">
<h2>Education</h2>
<ul>
<li><strong>Malaviya National Institute of Technology, Jaipur</strong> - Bachelor of Technology in Electronics and Communication (2023-2027) - GPA: 7.41</li>
<li><strong>Amenity Public School, Rudrapur</strong> - Class 12 (2022) - 96%</li>
<li><strong>Amenity Public School, Rudrapur</strong> - Class 10 (2020) - 99%</li>
</ul>
</div>
</section>
<section id="contact">
<div class="container">
<h2>Contact</h2>
<p>Email: <a href="mailto:[email protected]">[email protected]</a></p>
<p>LinkedIn: <a href="https://www.linkedin.com/in/bajaj-manya2003" target="_blank">Manya Bajaj</a></p>
<p>GitHub: <a href="https://github.com/manyabajaj21" target="_blank">github.com/Manya</a></p>
</div>
</section>
<footer>
<div class="container">
<p>© 2024 Manya Bajaj. All Rights Reserved.</p>
</div>
</footer>
</body>
</html>