Skip to content

Commit 53514a8

Browse files
Add files via upload
1 parent c47e9d1 commit 53514a8

1 file changed

Lines changed: 130 additions & 0 deletions

File tree

index.html

Lines changed: 130 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,130 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6+
<title>Savinav Sharma - Resume</title>
7+
<style>
8+
body {
9+
font-family: Arial, sans-serif;
10+
line-height: 1.6;
11+
margin: 0;
12+
padding: 20px;
13+
background-color: #f4f4f4;
14+
color: #333;
15+
}
16+
.container {
17+
max-width: 900px;
18+
margin: auto;
19+
background: #fff;
20+
padding: 20px;
21+
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
22+
border-radius: 8px;
23+
}
24+
header {
25+
text-align: center;
26+
padding-bottom: 20px;
27+
border-bottom: 2px solid #ddd;
28+
}
29+
header h1 {
30+
margin: 0;
31+
font-size: 2.5em;
32+
color: #2c3e50;
33+
}
34+
header p {
35+
margin: 5px 0 0;
36+
font-size: 1.1em;
37+
color: #7f8c8d;
38+
}
39+
section {
40+
padding: 20px 0;
41+
border-bottom: 1px solid #eee;
42+
}
43+
section:last-of-type {
44+
border-bottom: none;
45+
}
46+
h2 {
47+
color: #34495e;
48+
border-bottom: 2px solid #3498db;
49+
padding-bottom: 5px;
50+
margin-top: 0;
51+
font-size: 1.8em;
52+
}
53+
ul {
54+
list-style-type: none;
55+
padding: 0;
56+
}
57+
ul li {
58+
margin-bottom: 10px;
59+
}
60+
.degree-name {
61+
font-weight: bold;
62+
color: #555;
63+
}
64+
.school-date {
65+
font-style: italic;
66+
color: #777;
67+
}
68+
</style>
69+
</head>
70+
<body>
71+
72+
<div class="container">
73+
<header>
74+
<h1>Savinav Sharma</h1>
75+
<p>
76+
<a href="https://github.com/savinavsharma-2005" target="_blank">Github</a> |
77+
<a href="https://www.linkedin.com/in/savinav-sharma-571501252" target="_blank">LinkedIn</a> |
78+
<a href="https://leetcode.com/u/SAVINAV10/" target="_blank">LeetCode</a> |
79+
<a href="mailto:savinavsharma2005@gmail.com">savinavsharma2005@gmail.com</a> |
80+
+916398180477
81+
</p>
82+
</header>
83+
84+
<section id="summary">
85+
<h2>Summary</h2>
86+
<p>Passionate about tech and innovation. Willing to contribute to new tech revolutions.</p>
87+
</section>
88+
89+
<section id="education">
90+
<h2>Education</h2>
91+
<div>
92+
<h3><span class="degree-name">B.Tech in Computer Science and Engineering</span> - <span class="school-date">Rustamji institute of technology tekanpur (2023-2027)</span></h3>
93+
<p>CGPA-6.33</p>
94+
<p>I am pursuing a B.Tech in Computer Science and Engineering at Rustamji Institute of Technology, with an expected graduation in 2027. This program equips me with a strong foundation in computer science principles and engineering practices, preparing me for innovative solutions in the tech industry. I am eager to leverage my knowledge and skills to contribute to challenging projects.</p>
95+
</div>
96+
<br>
97+
<div>
98+
<h3><span class="degree-name">Intermediate Science</span> - <span class="school-date">Vidya Bhavan Public School, Gwalior (2022-2023)</span></h3>
99+
<p>Percentage: 69.2%</p>
100+
</div>
101+
<br>
102+
<div>
103+
<h3><span class="degree-name">High School</span> - <span class="school-date">Vidya Bhavan Public School, Gwalior (2020-2021)</span></h3>
104+
<p>Percentage: 74.4%</p>
105+
</div>
106+
</section>
107+
108+
<section id="skills">
109+
<h2>Skills</h2>
110+
<ul>
111+
<li>Python</li>
112+
<li>C++</li>
113+
<li>Data Structures and Algorithms</li>
114+
<li>Web Development</li>
115+
</ul>
116+
</section>
117+
118+
<section id="projects">
119+
<h2>Projects</h2>
120+
<div>
121+
<h3><span class="degree-name">Rock, Paper, Scissors game using python</span> - <span class="school-date">Sep 2025</span></h3>
122+
<p>The player chooses, between Rock, Paper & Scissors and it is compared to computer's choice and player wins and loses accordingly.</p>
123+
<p><a href="https://github.com/savinavsharma-2005/PYTHON-project/tree/main">Project Link</a></p>
124+
</div>
125+
</section>
126+
127+
</div>
128+
129+
</body>
130+
</html>

0 commit comments

Comments
 (0)