-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
323 lines (294 loc) · 14.5 KB
/
index.html
File metadata and controls
323 lines (294 loc) · 14.5 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Professional CV - John Doe</title>
<meta name="description" content="Professional Portfolio and CV of John Doe">
<!-- Google Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Roboto:wght@300;400;700&display=swap" rel="stylesheet">
<!-- Font Awesome -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<!-- AOS Animation CSS -->
<link href="https://unpkg.com/aos@2.3.1/dist/aos.css" rel="stylesheet">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<!-- Navigation -->
<nav class="navbar">
<div class="container">
<a href="#" class="logo">John<span>Doe</span>.</a>
<ul class="nav-links">
<li><a href="#home" class="active">Home</a></li>
<li><a href="#about">About</a></li>
<li><a href="#skills">Skills</a></li>
<li><a href="#experience">Experience</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
<div class="hamburger">
<span class="bar"></span>
<span class="bar"></span>
<span class="bar"></span>
</div>
</div>
</nav>
<!-- Hero Section -->
<section id="home" class="hero">
<div class="container hero-content">
<div class="hero-text" data-aos="fade-right">
<h3>Hello, I'm</h3>
<h1 class="typing-text">John Doe</h1>
<p>Full Stack Developer | UI/UX Designer</p>
<div class="cta-buttons">
<a href="#contact" class="btn btn-primary">Hire Me</a>
<a href="#portfolio" class="btn btn-secondary">View Portfolio</a>
</div>
<div class="social-icons">
<a href="#" aria-label="LinkedIn"><i class="fab fa-linkedin-in"></i></a>
<a href="#" aria-label="GitHub"><i class="fab fa-github"></i></a>
<a href="#" aria-label="Twitter"><i class="fab fa-twitter"></i></a>
</div>
</div>
<div class="hero-image" data-aos="fade-left">
<div class="img-box">
<!-- Using a placeholder image. Replace 'images/profile.jpg' with your actual photo -->
<img src="https://placehold.co/400x400/2c3e50/ffffff?text=JD" alt="John Doe Profile" class="profile-img">
</div>
</div>
</div>
</section>
<!-- About Section -->
<section id="about" class="section">
<div class="container">
<div class="section-header" data-aos="fade-up">
<h2>About Me</h2>
<p>Get to know me better</p>
</div>
<div class="about-content">
<div class="about-img" data-aos="fade-right">
<img src="https://placehold.co/300x400/34495e/ffffff?text=About+Me" alt="About Me">
</div>
<div class="about-text" data-aos="fade-left">
<h3>Professional Web Developer & Designer</h3>
<p>I am a passionate developer with over 5 years of experience in building modern, responsive, and user-friendly websites. I specialize in turning complex problems into simple, beautiful, and intuitive interface designs.</p>
<p>My goal is to build applications that are scalable and efficient under the hood while providing engaging user experiences.</p>
<div class="info-list">
<div class="info-item">
<i class="fas fa-user"></i>
<span><strong>Name:</strong> John Doe</span>
</div>
<div class="info-item">
<i class="fas fa-envelope"></i>
<span><strong>Email:</strong> email@example.com</span>
</div>
<div class="info-item">
<i class="fas fa-map-marker-alt"></i>
<span><strong>Location:</strong> Jakarta, Indonesia</span>
</div>
<div class="info-item">
<i class="fas fa-calendar-check"></i>
<span><strong>Availability:</strong> Freelance / Full-time</span>
</div>
</div>
<a href="#" class="btn btn-primary">Download CV <i class="fas fa-download"></i></a>
</div>
</div>
</div>
</section>
<!-- Skills Section -->
<section id="skills" class="section bg-light">
<div class="container">
<div class="section-header" data-aos="fade-up">
<h2>My Skills</h2>
<p>What I bring to the table</p>
</div>
<div class="skills-container">
<div class="skill-card" data-aos="zoom-in" data-aos-delay="100">
<i class="fab fa-html5" style="color: #e34c26;"></i>
<h3>HTML5</h3>
<div class="progress-bar">
<div class="progress" style="width: 95%"></div>
</div>
</div>
<div class="skill-card" data-aos="zoom-in" data-aos-delay="200">
<i class="fab fa-css3-alt" style="color: #264de4;"></i>
<h3>CSS3</h3>
<div class="progress-bar">
<div class="progress" style="width: 90%"></div>
</div>
</div>
<div class="skill-card" data-aos="zoom-in" data-aos-delay="300">
<i class="fab fa-js" style="color: #f0db4f;"></i>
<h3>JavaScript</h3>
<div class="progress-bar">
<div class="progress" style="width: 85%"></div>
</div>
</div>
<div class="skill-card" data-aos="zoom-in" data-aos-delay="400">
<i class="fab fa-react" style="color: #61dbfb;"></i>
<h3>React</h3>
<div class="progress-bar">
<div class="progress" style="width: 80%"></div>
</div>
</div>
<div class="skill-card" data-aos="zoom-in" data-aos-delay="500">
<i class="fab fa-node-js" style="color: #68a063;"></i>
<h3>Node.js</h3>
<div class="progress-bar">
<div class="progress" style="width: 75%"></div>
</div>
</div>
<div class="skill-card" data-aos="zoom-in" data-aos-delay="600">
<i class="fas fa-database" style="color: #00758f;"></i>
<h3>SQL</h3>
<div class="progress-bar">
<div class="progress" style="width: 70%"></div>
</div>
</div>
</div>
</div>
</section>
<!-- Experience Section -->
<section id="experience" class="section">
<div class="container">
<div class="section-header" data-aos="fade-up">
<h2>Experience</h2>
<p>My professional journey</p>
</div>
<div class="timeline">
<div class="timeline-item left" data-aos="fade-right">
<div class="timeline-content">
<div class="date">2023 - Present</div>
<h3>Senior Web Developer</h3>
<h4>Tech Solutions Inc.</h4>
<p>Leading a team of developers to build enterprise-scale web applications. Implemented CI/CD pipelines and improved code quality standards.</p>
</div>
</div>
<div class="timeline-item right" data-aos="fade-left">
<div class="timeline-content">
<div class="date">2021 - 2023</div>
<h3>Full Stack Developer</h3>
<h4>Creative Agency</h4>
<p>Developed custom e-commerce solutions and corporate websites. Collaborated with designers to implement pixel-perfect UIs.</p>
</div>
</div>
<div class="timeline-item left" data-aos="fade-right">
<div class="timeline-content">
<div class="date">2019 - 2021</div>
<h3>Junior Web Developer</h3>
<h4>StartUp Hub</h4>
<p>Worked on maintaining existing codebases and implementing new features. Learned agile methodologies and version control best practices.</p>
</div>
</div>
</div>
</div>
</section>
<!-- Testimonials Section -->
<section id="testimonials" class="section bg-light">
<div class="container">
<div class="section-header" data-aos="fade-up">
<h2>Testimonials</h2>
<p>What clients say</p>
</div>
<div class="testimonials-grid">
<div class="testimonial-card" data-aos="flip-up">
<div class="quote-icon"><i class="fas fa-quote-left"></i></div>
<p>"John is an exceptional developer. He delivered our project on time and exceeded our expectations with the quality of his work."</p>
<div class="client-info">
<img src="https://placehold.co/50x50/333/fff?text=C1" alt="Client 1">
<div>
<h4>Sarah Johnson</h4>
<span>CEO, TechStart</span>
</div>
</div>
</div>
<div class="testimonial-card" data-aos="flip-up" data-aos-delay="100">
<div class="quote-icon"><i class="fas fa-quote-left"></i></div>
<p>"Great communication and technical skills. He solved complex problems quickly and efficiently. Highly recommended!"</p>
<div class="client-info">
<img src="https://placehold.co/50x50/333/fff?text=C2" alt="Client 2">
<div>
<h4>Michael Brown</h4>
<span>Product Manager</span>
</div>
</div>
</div>
<div class="testimonial-card" data-aos="flip-up" data-aos-delay="200">
<div class="quote-icon"><i class="fas fa-quote-left"></i></div>
<p>"The website design is stunning and the user experience is smooth. A true professional who cares about the details."</p>
<div class="client-info">
<img src="https://placehold.co/50x50/333/fff?text=C3" alt="Client 3">
<div>
<h4>Emily Davis</h4>
<span>Marketing Director</span>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Contact Section -->
<section id="contact" class="section">
<div class="container">
<div class="section-header" data-aos="fade-up">
<h2>Contact Me</h2>
<p>Let's work together</p>
</div>
<div class="contact-content">
<div class="contact-info" data-aos="fade-right">
<div class="contact-item">
<i class="fas fa-map-marker-alt"></i>
<div>
<h3>Address</h3>
<p>Jakarta, Indonesia</p>
</div>
</div>
<div class="contact-item">
<i class="fas fa-envelope"></i>
<div>
<h3>Email</h3>
<p>email@example.com</p>
</div>
</div>
<div class="contact-item">
<i class="fas fa-phone"></i>
<div>
<h3>Phone</h3>
<p>+62 123 4567 890</p>
</div>
</div>
</div>
<form class="contact-form" id="contactForm" data-aos="fade-left">
<div class="form-group">
<input type="text" id="name" placeholder="Your Name" required>
</div>
<div class="form-group">
<input type="email" id="email" placeholder="Your Email" required>
</div>
<div class="form-group">
<textarea id="message" rows="5" placeholder="Your Message" required></textarea>
</div>
<button type="submit" class="btn btn-primary">Send Message <i class="fas fa-paper-plane"></i></button>
<div id="form-feedback" class="form-feedback"></div>
</form>
</div>
</div>
</section>
<!-- Footer -->
<footer>
<div class="container">
<p>© 2024 John Doe. All Rights Reserved.</p>
<div class="social-links">
<a href="#" aria-label="LinkedIn"><i class="fab fa-linkedin-in"></i></a>
<a href="#" aria-label="GitHub"><i class="fab fa-github"></i></a>
<a href="#" aria-label="Twitter"><i class="fab fa-twitter"></i></a>
</div>
</div>
</footer>
<!-- AOS Animation Script -->
<script src="https://unpkg.com/aos@2.3.1/dist/aos.js"></script>
<script src="js/script.js"></script>
</body>
</html>