-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
278 lines (269 loc) · 13.1 KB
/
index.html
File metadata and controls
278 lines (269 loc) · 13.1 KB
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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
<!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 Sandeep S - Software Engineer & Full Stack Developer">
<title>Sandeep S - Software Engineer</title>
<link rel="stylesheet" type="text/css" href="style.css">
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css" rel="stylesheet">
<script src="script.js" defer></script>
</head>
<body>
<nav class="navbar">
<div class="nav-container">
<div class="nav-logo">
<a href="#home">Sandeep S</a>
</div>
<ul class="nav-menu">
<li class="nav-item">
<a href="#home" class="nav-link">Home</a>
</li>
<li class="nav-item">
<a href="#about" class="nav-link">About</a>
</li>
<li class="nav-item">
<a href="#skills" class="nav-link">Skills</a>
</li>
<li class="nav-item">
<a href="#projects" class="nav-link">Projects</a>
</li>
<li class="nav-item">
<a href="#contact" class="nav-link">Contact</a>
</li>
</ul>
<div class="hamburger">
<span class="bar"></span>
<span class="bar"></span>
<span class="bar"></span>
</div>
</div>
</nav>
<section id="home" class="hero">
<div class="hero-container">
<div class="hero-content">
<h1 class="hero-title">Hi, I'm <span class="highlight">Sandeep S</span></h1>
<p class="hero-subtitle">Full Stack Software Engineer</p>
<p class="hero-description">Passionate about creating innovative solutions and building scalable applications that make a difference.</p>
<div class="hero-buttons">
<a href="#projects" class="btn btn-primary">View My Work</a>
<a href="#contact" class="btn btn-secondary">Get In Touch</a>
</div>
</div>
<div class="hero-image">
<div class="profile-image">
<img src="me.jpg" alt="Sandeep S - Software Engineer" class="hero-img">
</div>
</div>
</div>
</section>
<section id="about" class="about">
<div class="container">
<h2 class="section-title">About Me</h2>
<div class="about-content">
<div class="about-text">
<p>I'm a passionate software engineer with 3+ years of experience in developing web applications and software solutions. I specialize in full-stack development with expertise in modern technologies and frameworks.</p>
<p>My journey in software development started with a curiosity to build things that solve real-world problems. Today, I work on creating scalable, user-friendly applications that deliver exceptional user experiences.</p>
<div class="about-stats">
<div class="stat">
<h3>3+</h3>
<p>Years Experience</p>
</div>
<div class="stat">
<h3>20+</h3>
<p>Projects Completed</p>
</div>
<div class="stat">
<h3>15+</h3>
<p>Happy Clients</p>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="skills" class="skills">
<div class="container">
<h2 class="section-title">Skills & Technologies</h2>
<div class="skills-grid">
<div class="skill-category">
<h3>Frontend</h3>
<div class="skill-items">
<span class="skill-item">HTML5</span>
<span class="skill-item">CSS3</span>
<span class="skill-item">JavaScript</span>
<span class="skill-item">React.js</span>
<span class="skill-item">Vue.js</span>
<span class="skill-item">TypeScript</span>
</div>
</div>
<div class="skill-category">
<h3>Backend</h3>
<div class="skill-items">
<span class="skill-item">Node.js</span>
<span class="skill-item">Python</span>
<span class="skill-item">Java</span>
<span class="skill-item">Express.js</span>
<span class="skill-item">Django</span>
<span class="skill-item">Spring Boot</span>
</div>
</div>
<div class="skill-category">
<h3>Database</h3>
<div class="skill-items">
<span class="skill-item">MongoDB</span>
<span class="skill-item">PostgreSQL</span>
<span class="skill-item">MySQL</span>
<span class="skill-item">Redis</span>
</div>
</div>
<div class="skill-category">
<h3>Tools & Others</h3>
<div class="skill-items">
<span class="skill-item">Git</span>
<span class="skill-item">Docker</span>
<span class="skill-item">AWS</span>
<span class="skill-item">CI/CD</span>
<span class="skill-item">REST APIs</span>
<span class="skill-item">GraphQL</span>
</div>
</div>
</div>
</div>
</section>
<section id="projects" class="projects">
<div class="container">
<h2 class="section-title">Featured Projects</h2>
<div class="projects-grid">
<div class="project-card">
<div class="project-image">
<i class="fas fa-shopping-cart"></i>
</div>
<div class="project-content">
<h3>E-Commerce Platform</h3>
<p>A full-stack e-commerce solution built with React, Node.js, and MongoDB. Features include user authentication, product management, payment integration, and admin dashboard.</p>
<div class="project-tech">
<span>React</span>
<span>Node.js</span>
<span>MongoDB</span>
<span>Stripe</span>
</div>
<div class="project-links">
<a href="#" class="project-link"><i class="fab fa-github"></i> Code</a>
<a href="#" class="project-link"><i class="fas fa-external-link-alt"></i> Live</a>
</div>
</div>
</div>
<div class="project-card">
<div class="project-image">
<i class="fas fa-tasks"></i>
</div>
<div class="project-content">
<h3>Task Management App</h3>
<p>A collaborative task management application with real-time updates, team collaboration features, and progress tracking. Built with Vue.js and Socket.io.</p>
<div class="project-tech">
<span>Vue.js</span>
<span>Socket.io</span>
<span>Express.js</span>
<span>PostgreSQL</span>
</div>
<div class="project-links">
<a href="#" class="project-link"><i class="fab fa-github"></i> Code</a>
<a href="#" class="project-link"><i class="fas fa-external-link-alt"></i> Live</a>
</div>
</div>
</div>
<div class="project-card">
<div class="project-image">
<i class="fas fa-chart-line"></i>
</div>
<div class="project-content">
<h3>Data Analytics Dashboard</h3>
<p>An interactive dashboard for data visualization and analytics. Features real-time data processing, customizable charts, and export functionality.</p>
<div class="project-tech">
<span>Python</span>
<span>Django</span>
<span>Chart.js</span>
<span>Redis</span>
</div>
<div class="project-links">
<a href="#" class="project-link"><i class="fab fa-github"></i> Code</a>
<a href="#" class="project-link"><i class="fas fa-external-link-alt"></i> Live</a>
</div>
</div>
</div>
<div class="project-card">
<div class="project-image">
<i class="fas fa-mobile-alt"></i>
</div>
<div class="project-content">
<h3>Mobile Fitness App</h3>
<p>A cross-platform mobile application for fitness tracking with workout plans, progress monitoring, and social features for motivation.</p>
<div class="project-tech">
<span>React Native</span>
<span>Firebase</span>
<span>Redux</span>
<span>Expo</span>
</div>
<div class="project-links">
<a href="#" class="project-link"><i class="fab fa-github"></i> Code</a>
<a href="#" class="project-link"><i class="fas fa-external-link-alt"></i> Live</a>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="contact" class="contact">
<div class="container">
<h2 class="section-title">Get In Touch</h2>
<div class="contact-content">
<div class="contact-info">
<h3>Let's work together!</h3>
<p>I'm always interested in new opportunities and exciting projects. Feel free to reach out if you'd like to collaborate or just want to say hello.</p>
<div class="contact-details">
<div class="contact-item">
<i class="fas fa-envelope"></i>
<span>coder.sandeep249@gmail.com</span>
</div>
<div class="contact-item">
<i class="fas fa-phone"></i>
<span>+1 (555) 123-4567</span>
</div>
<div class="contact-item">
<i class="fas fa-map-marker-alt"></i>
<span>San Francisco, CA</span>
</div>
</div>
<div class="social-links">
<a href="#" class="social-link"><i class="fab fa-github"></i></a>
<a href="#" class="social-link"><i class="fab fa-linkedin"></i></a>
<a href="#" class="social-link"><i class="fab fa-twitter"></i></a>
<a href="#" class="social-link"><i class="fab fa-instagram"></i></a>
</div>
</div>
<form class="contact-form">
<div class="form-group">
<input type="text" id="name" name="name" placeholder="Your Name" required>
</div>
<div class="form-group">
<input type="email" id="email" name="email" placeholder="Your Email" required>
</div>
<div class="form-group">
<input type="text" id="subject" name="subject" placeholder="Subject" required>
</div>
<div class="form-group">
<textarea id="message" name="message" placeholder="Your Message" rows="5" required></textarea>
</div>
<button type="submit" class="btn btn-primary">Send Message</button>
</form>
</div>
</div>
</section>
<footer class="footer">
<div class="container">
<p>© 2024 Sandeep S. All rights reserved.</p>
</div>
</footer>
</body>
</html>