-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
219 lines (209 loc) Β· 7.29 KB
/
index.html
File metadata and controls
219 lines (209 loc) Β· 7.29 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My Portfolio</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<!-- Header -->
<header id="header">
<nav>
<div class="logo">Portfolio</div>
<ul class="nav-links" id="navLinks">
<li><a href="#home">Home</a></li>
<li><a href="#skills">Skills</a></li>
<li><a href="#services">Services</a></li>
<li><a href="#experience">Experience</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
<div class="menu-toggle" id="menuToggle">
<span></span>
<span></span>
<span></span>
</div>
</nav>
</header>
<!-- Hero Section -->
<section class="hero" id="home">
<div class="hero-bg"></div>
<div class="hero-content">
<div class="hero-text">
<h1>Hello, I'm Nafiul Islam</h1>
<h2>Full Stack Developer</h2>
<p>I'm a passionate web developer who loves creating modern and responsive websites. Skilled in HTML, CSS,
JavaScript, and various frameworks to bring ideas to life.</p>
<div class="hero-buttons">
<a href="#contact" class="btn btn-primary">Get In Touch</a>
<a href="#services" class="btn btn-secondary">Learn More</a>
</div>
</div>
<div class="hero-image">
<div class="profile-pic">
<img src="Assets/MD Nafiul Islam.jpg" alt="Nafiul Profile Picture">
</div>
</div>
</div>
</section>
<!-- Skills Section -->
<section class="skills" id="skills">
<div class="container">
<h2 class="section-title">My Skills</h2>
<p class="section-subtitle">Technologies and tools I work with</p>
<div class="skills-grid">
<div class="skill-card">
<div class="skill-icon">π¨</div>
<h3>Frontend Development</h3>
<p>HTML, CSS, JavaScript, React</p>
<div class="skill-bar">
<div class="skill-progress" style="width: 90%"></div>
</div>
</div>
<div class="skill-card">
<div class="skill-icon">βοΈ</div>
<h3>Backend Development</h3>
<p>Node.js, Express, MongoDB</p>
<div class="skill-bar">
<div class="skill-progress" style="width: 85%"></div>
</div>
</div>
<div class="skill-card">
<div class="skill-icon">π±</div>
<h3>Responsive Design</h3>
<p>Mobile-first, Bootstrap, Tailwind</p>
<div class="skill-bar">
<div class="skill-progress" style="width: 95%"></div>
</div>
</div>
<div class="skill-card">
<div class="skill-icon">π―</div>
<h3>UI/UX Design</h3>
<p>Figma, Adobe XD, Photoshop</p>
<div class="skill-bar">
<div class="skill-progress" style="width: 80%"></div>
</div>
</div>
</div>
</div>
</section>
<!-- Services Section -->
<section class="services" id="services">
<div class="container">
<h2 class="section-title">My Services</h2>
<p class="section-subtitle">What I offer to clients</p>
<div class="services-grid">
<div class="service-card">
<div class="service-icon">π»</div>
<h3>Web Development</h3>
<p>Building fully responsive and modern websites that work perfectly across all devices and browsers.</p>
</div>
<div class="service-card">
<div class="service-icon">π¨</div>
<h3>UI/UX Design</h3>
<p>Creating user-friendly and attractive interfaces that enhance user experience and engagement.</p>
</div>
<div class="service-card">
<div class="service-icon">π</div>
<h3>Performance Optimization</h3>
<p>Improving website speed and performance, optimized for SEO and better user experience.</p>
</div>
</div>
</div>
</section>
<!-- Experience Section -->
<section class="experience" id="experience">
<div class="container">
<h2 class="section-title">Work Experience</h2>
<p class="section-subtitle">My professional journey</p>
<div class="timeline">
<div class="timeline-item">
<div class="timeline-dot"></div>
<div class="timeline-content">
<h3>Senior Web Developer</h3>
<div class="date">2022 - Present</div>
<p>Working as Senior Web Developer at Tech Solutions Ltd. Leading large projects and managing development
teams.</p>
</div>
</div>
<div class="timeline-item">
<div class="timeline-dot"></div>
<div class="timeline-content">
<h3>Frontend Developer</h3>
<div class="date">2020 - 2022</div>
<p>Worked as Frontend Developer at Digital Agency, creating responsive and interactive websites for various
clients.</p>
</div>
</div>
<div class="timeline-item">
<div class="timeline-dot"></div>
<div class="timeline-content">
<h3>Junior Developer</h3>
<div class="date">2018 - 2020</div>
<p>Started my career as Junior Developer at Web Solutions, learning various technologies and best practices.
</p>
</div>
</div>
</div>
</div>
</section>
<!-- Contact Section -->
<section class="contact" id="contact">
<div class="container">
<h2 class="section-title">Get In Touch</h2>
<p class="section-subtitle">Let's talk about your project</p>
<div class="contact-content">
<div class="contact-info">
<div class="contact-item">
<div class="contact-icon">π§</div>
<div>
<h3>Email</h3>
<p>nafiulislamn0@gmail.com</p>
</div>
</div>
<div class="contact-item">
<div class="contact-icon">π±</div>
<div>
<h3>Phone</h3>
<p>+880 1879608965</p>
</div>
</div>
<div class="contact-item">
<div class="contact-icon">π</div>
<div>
<h3>Location</h3>
<p>Rangpur, Dhaka, Bangladesh</p>
</div>
</div>
</div>
<form class="contact-form">
<div class="form-group">
<label>Your Name</label>
<input type="text" placeholder="Enter your name" required>
</div>
<div class="form-group">
<label>Email</label>
<input type="email" placeholder="Enter your email" required>
</div>
<div class="form-group">
<label>Message</label>
<textarea placeholder="Write your message" required></textarea>
</div>
<button type="submit" class="btn btn-primary">Send Message</button>
</form>
</div>
</div>
</section>
<!-- Footer -->
<footer>
<div class="social-links">
<a href="#" title="Facebook">π</a>
<a href="#" title="Twitter">π¦</a>
<a href="#" title="LinkedIn">πΌ</a>
<a href="#" title="GitHub">π»</a>
</div>
<p class="footer-text">Β© 2025 Portfolio. All rights reserved.</p>
</footer>
<script src="app.js"></script>
</body>
</html>