-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
68 lines (65 loc) · 2.71 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sandeep's Resume</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<h1>Sandeep Kumar</h1>
<p>Full-Stack Web Developer</p>
</header>
<main>
<section>
<h2>Contact</h2>
<p><i class="fa fa-envelope icon"></i><a href="mailto:[email protected]">[email protected]</a>
</p>
<p><i class="fab fa-github icon"></i><a href="https://github.com/sandeep-dev">sandeep-dev</a></p>
<p><i class="fab fa-linkedin icon"></i><a href="https://linkedin.com/in/sandeep-dev">sandeep-dev</a></p>
</section>
<section>
<h2>Skills</h2>
<ul class="skills-list">
<li>HTML5 & CSS3</li>
<li>JavaScript (ES6+)</li>
<li>React & Redux</li>
<li>Node.js & Express</li>
<li>MongoDB & SQL</li>
<li>Git & GitHub</li>
<li>RESTful API Development</li>
<li>Responsive Web Design</li>
</ul>
</section>
<section>
<h2>Education</h2>
<h3>Bachelor of Technology in Computer Science</h3>
<p>Indian Institute of Technology, Delhi</p>
<p>2014-2018</p>
</section>
<section>
<h2>About Me</h2>
<p>I am a passionate full-stack web developer with a knack for building scalable web applications and a love
for coding. I'm looking for opportunities to bring innovative ideas to life in a dynamic company that
values creativity and technical excellence.</p>
</section>
<section>
<h2>Work Experience</h2>
<h3>Senior Full-Stack Developer</h3>
<p>Tech Innovations Inc. | 2018 - Present</p>
<ul class="work-experience">
<li>Lead the development of a high-traffic e-commerce platform, enhancing user experience and
performance.</li>
<li>Implemented a microservices architecture that improved system scalability and maintainability.</li>
<li>Collaborated with cross-functional teams to integrate new features, resulting in a 30% increase in
customer engagement.</li>
</ul>
</section>
</main>
<footer>
© 2024 Sandeep Kumar. All rights reserved.
</footer>
</body>
</html>