-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
365 lines (315 loc) · 9.65 KB
/
index.html
File metadata and controls
365 lines (315 loc) · 9.65 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
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Advanced Portfolio</title>
<style>
/* Basic Reset */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Arial', sans-serif;
line-height: 1.6;
background-color: #f4f4f4;
color: #333;
}
h1, h2, h3 {
color: #333;
}
a {
text-decoration: none;
color: inherit;
}
/* Navigation Bar */
nav {
background-color: #333;
color: #fff;
padding: 15px 20px;
position: sticky;
top: 0;
z-index: 1000;
}
nav ul {
list-style: none;
display: flex;
justify-content: space-around;
align-items: center;
}
nav ul li a {
color: white;
font-weight: bold;
padding: 10px 20px;
transition: background-color 0.3s;
}
nav ul li a:hover {
background-color: #555;
border-radius: 5px;
}
/* Hero Section */
.hero {
height: 100vh;
background: linear-gradient(to right, #f44336, #ff9800);
color: white;
display: flex;
justify-content: center;
align-items: center;
text-align: center;
position: relative;
}
.hero h1 {
font-size: 3rem;
margin-bottom: 20px;
}
.hero p {
font-size: 1.2rem;
margin-bottom: 30px;
}
.btn {
padding: 10px 20px;
background-color: #ff9800;
color: white;
border: none;
border-radius: 5px;
cursor: pointer;
font-size: 1.1rem;
transition: background-color 0.3s;
}
.btn:hover {
background-color: #ff5722;
}
/* About Section */
.about {
background-color: #fff;
padding: 60px 20px;
text-align: center;
}
.about h2 {
font-size: 2.5rem;
margin-bottom: 30px;
}
.about-container {
display: flex;
justify-content: center;
gap: 20px;
flex-wrap: wrap;
}
.about-container .text {
flex: 1;
max-width: 500px;
}
.about-container img {
max-width: 100%;
border-radius: 10px;
}
/* Skills Section */
.skills {
background-color: #f4f4f4;
padding: 60px 20px;
}
.skills h2 {
text-align: center;
font-size: 2.5rem;
margin-bottom: 40px;
}
.skills ul {
display: flex;
justify-content: space-around;
list-style: none;
flex-wrap: wrap;
}
.skills ul li {
text-align: center;
flex-basis: 30%;
padding: 10px;
background-color: #fff;
margin-bottom: 20px;
border-radius: 8px;
box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}
.skills ul li h3 {
margin-top: 10px;
}
.skills ul li p {
font-size: 1.1rem;
}
/* Projects Section */
.projects {
background-color: #fff;
padding: 60px 20px;
}
.projects h2 {
font-size: 2.5rem;
text-align: center;
margin-bottom: 40px;
}
.projects .project-list {
display: flex;
justify-content: space-around;
gap: 20px;
flex-wrap: wrap;
}
.projects .project-card {
background-color: #f4f4f4;
width: 30%;
padding: 20px;
text-align: center;
border-radius: 10px;
box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
transition: transform 0.3s;
}
.projects .project-card:hover {
transform: scale(1.05);
}
.projects .project-card img {
max-width: 100%;
border-radius: 10px;
}
/* Contact Section */
.contact {
background-color: #ff9800;
color: white;
padding: 60px 20px;
}
.contact h2 {
text-align: center;
font-size: 2.5rem;
margin-bottom: 40px;
}
.contact form input,
.contact form textarea {
width: 100%;
padding: 10px;
margin: 10px 0;
border-radius: 5px;
border: 1px solid #ccc;
}
.contact form button {
padding: 15px 30px;
background-color: #fff;
color: #ff9800;
border: none;
border-radius: 5px;
cursor: pointer;
}
.contact form button:hover {
background-color: #ff5722;
color: white;
}
/* Footer Section */
footer {
background-color: #333;
color: white;
text-align: center;
padding: 30px;
}
footer a {
color: #ff9800;
text-decoration: none;
font-weight: bold;
}
footer a:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<!-- Navigation -->
<nav>
<div class="logo">My Portfolio</div>
<ul>
<li><a href="#home">Home</a></li>
<li><a href="#about">About</a></li>
<li><a href="#skills">Skills</a></li>
<li><a href="#projects">Projects</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
<!-- Hero Section -->
<section id="home" class="hero">
<div>
<h1>Welcome to My Professional Portfolio</h1>
<p>Building the future with innovative web solutions.</p>
<button class="btn">Let's Work Together</button>
</div>
</section>
<!-- About Section -->
<section id="about" class="about">
<h2>About Me</h2>
<div class="about-container">
<div class="text">
<p>I am a passionate web developer who loves to create responsive, beautiful, and functional websites. I specialize in front-end development and always strive to write clean, maintainable code. When I'm not coding, you can find me exploring new web technologies or contributing to open-source projects.</p>
</div>
<img src="your-photo.jpg" alt="Profile Picture">
</div>
</section>
<!-- Skills Section -->
<section id="skills" class="skills">
<h2>My Skills</h2>
<ul>
<li>
<h3>HTML</h3>
<p>Expert in creating accessible and SEO-friendly websites.</p>
</li>
<li>
<h3>CSS</h3>
<p>Master in creating responsive layouts using Flexbox, Grid, and more.</p>
</li>
<li>
<h3>JavaScript</h3>
<p>Proficient in writing interactive and dynamic client-side scripts.</p>
</li>
<li>
<h3>React</h3>
<p>Experienced in building modern web applications with React.</p>
</li>
<li>
<h3>Node.js</h3>
<p>Skilled in server-side programming with Node.js and Express.</p>
</li>
</ul>
</section>
<!-- Projects Section -->
<section id="projects" class="projects">
<h2>My Projects</h2>
<div class="project-list">
<div class="project-card">
<img src="project1.jpg" alt="Project 1">
<h3>Project One</h3>
<p>A modern responsive website using HTML, CSS, and JavaScript.</p>
<a href="#" class="btn">View Project</a>
</div>
<div class="project-card">
<img src="project2.jpg" alt="Project 2">
<h3>Project Two</h3>
<p>A web application built with React and Node.js.</p
<a href="#" class="btn">View Project</a>
</div>
<div class="project-card">
<img src="project3.jpg" alt="Project 3">
<h3>Project Three</h3>
<p>A fully interactive e-commerce site with real-time features.</p>
<a href="#" class="btn">View Project</a>
</div>
</div>
</section>
<!-- Contact Section -->
<section id="contact" class="contact">
<h2>Contact Me</h2>
<form action="#">
<input type="text" name="name" placeholder="Your Name" required>
<input type="email" name="email" placeholder="Your Email" required>
<textarea name="message" placeholder="Your Message" required></textarea>
<button type="submit">Send Message</button>
</form>
</section>
<!-- Footer Section -->
<footer>
<p>© 2024 My Portfolio | All Rights Reserved</p>
<p>Follow me on <a href="https://www.linkedin.com/in/yourprofile" target="_blank">LinkedIn</a> | <a href="https://github.com/yourusername" target="_blank">GitHub</a></p>
</footer>
</body>
</html>