-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
339 lines (325 loc) · 12.8 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Personal Portfolio Website</title>
<link rel="stylesheet" href="style.css" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.6.0/css/all.min.css"
integrity="sha512-Kc323vGBEqzTmouAECnVceyQqyqdsSiqLQISBL29aUW4U/M7pSPA/gEUZQqv1cwx4OnYxTxve5UMg5GT6L4JJg=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
<script src="https://unpkg.com/typed.js@2.1.0/dist/typed.umd.js"></script>
</head>
<body>
<!-- navbar section -->
<div id="header">
<div class="container">
<nav>
<div class="nav-left">
<img
src="https://github.com/AbdullahRFA/Portfolio_Website/blob/main/images/pic_with_banana_tree.jpeg?raw=true"
alt="LOGO"
class="logo"
/>
<p id="rfa">A_N_S_RFA</p>
</div>
<ul id="sidemenu">
<li><a href="#header">Home</a></li>
<li><a href="#about">About</a></li>
<li><a href="#services">Services</a></li>
<li><a href="#portfolio">Portfolio</a></li>
<li><a href="#contact">Contact</a></li>
<i class="fas fa-times" onclick="closemenu()"></i>
<!-- cross iconr -->
</ul>
<!-- menu icon -->
<i class="fas fa-bars" onclick="openmenu()"></i>
</nav>
<div id="header_text">
<p id="degination"></p>
<h1>
<p id="greeting"></p>
Hi, I'm <span>Abdullah</span> <br />Nazmus-Sakib From Bangladesh
</h1>
</div>
</div>
</div>
<!-- About Section -->
<div id="about">
<div class="container">
<div class="row">
<div class="about-col-1">
<img
src="https://github.com/AbdullahRFA/Portfolio_Website/blob/main/images/pic_on_stair_close.png?raw=true"
alt=""
/>
</div>
<div class="about-col-2">
<h1 class="sub-title">About Me</h1>
<p>
Innovative Third-Year Computer Science Student at Jahangirnaga
University | Passionate About AI and Software Development |
Seeking Internship Opportunities | Skilled in HTML, CSS, Java,
Javascript, C, C++, Python and Database |
</p>
<div class="tab-titles">
<p class="tab-links active-link" onclick="opentab('skills')">
Skills
</p>
<p class="tab-links" onclick="opentab('experience')">
Experience
</p>
<p class="tab-links" onclick="opentab('education')">Education</p>
</div>
<div class="tab-contents active-tab" id="skills">
<ul>
<li>
<span>Web Developer</span><br />Web App/Softwar Development
</li>
<li>
<span>IOT</span><br />Expert at ardunino and online
platform(Blynk,ThinkSpeak)
</li>
<li><span>UI/UX</span><br />Designing Web/App interfaces</li>
</ul>
</div>
<div class="tab-contents" id="experience">
<ul>
<li>
<span>2024 - Current</span><br />Learning Web Development and
Learning IOT
</li>
<li>
<span>2023 - 2024</span><br />Pertipated as a volunteer in
JU-NCPC
</li>
<li>
<span>2022 - 2023</span><br />Worked With JURC and Pertipated
in robotics compititon in BUBT
</li>
<li>
<span>2021 - 2022 </span><br />Do Compitative Programing
</li>
<li></li>
</ul>
</div>
<!-- Closing the 'experience' tab content -->
<div class="tab-contents" id="education">
<ul>
<li>
<span>2020 - Current</span><br />Student of JU at CSE dept
</li>
<li><span>2020</span><br />HSC from N.S Govt College Natore</li>
<li>
<span>2018</span><br />Dhakil from Sonadanga Bharatta Alim
Madrashah
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
<!-- Service Section -->
<div id="services">
<div class="container">
<h1 class="sub-title">My Services</h1>
<div class="services-list">
<div>
<i class="fa-solid fa-code"></i>
<h2>Web Developer</h2>
<p style="text-align: justify">
Web development involves designing, creating, and maintaining
websites, focusing on user experience, functionality, performance,
and visual appeal for online engagement.
</p>
<a href="">Learn More</a>
</div>
<div>
<i class="fas fa-network-wired"></i>
<h2>IOT</h2>
<p style="text-align: justify">
The Internet of Things (IoT) connects devices to the internet,
enabling data sharing, automation, and control for smarter, more
efficient systems.
</p>
<a href="">Learn More</a>
</div>
<div>
<i class="fa-solid fa-crop-alt"></i>
<h2>UI-UX Designer</h2>
<p style="text-align: justify">
UX/UI design focuses on creating intuitive, visually appealing
interfaces that enhance user satisfaction by improving
accessibility, usability, and overall interaction.
</p>
<a href="">Learn More</a>
</div>
</div>
</div>
</div>
<!-- Portfolio Section -->
<div id="portfolio">
<div class="container">
<h1 class="sub-title">My Work</h1>
<div class="work-list">
<div class="work">
<img
src="https://github.com/AbdullahRFA/Portfolio_Website/blob/main/images/clock.png?raw=true"
alt="Work-Pic"
/>
<div class="layer">
<h3>Digital Clock Web Application</h3>
<p style="text-align: justify">
I recently developed a sleek and responsive digital clock using
HTML, CSS, and JavaScript. This project showcases not only my
skills in front-end development but also my attention to detail
in creating an interactive and visually appealing user
interface.
</p>
<a href="https://digital-clock-jsproject-01.netlify.app"
target="_blank"><i class="fas fa-external-link-alt"></i
></a>
</div>
</div>
<div class="work">
<img
src="https://github.com/AbdullahRFA/Portfolio_Website/blob/main/images/calculator.png?raw=true"
alt="Work-Pic"
/>
<div class="layer">
<h3>Interactive Calculator Web App</h3>
<p style="text-align: justify">
I developed a fully functional, interactive calculator web
application using HTML, CSS, and JavaScript. This project allows
users to perform basic arithmetic operations like addition,
subtraction, multiplication, and division, along with advanced
features such as handling parentheses for complex calculations.
The UI is designed with a responsive layout and an intuitive
button-based interface, ensuring ease of use across devices.
</p>
<a href="https://response-calculator.netlify.app"
target="_blank"><i class="fas fa-external-link-alt"></i
></a>
</div>
</div>
<div class="work">
<img
src="https://github.com/AbdullahRFA/Portfolio_Website/blob/main/images/tic-tac-tao.png?raw=true"
alt="Work-Pic"
/>
<div class="layer">
<h3>Tic-Tac-Toe Game</h3>
<p style="text-align: justify">
I recently built a fully responsive Tic-Tac-Toe game using HTML,
CSS, and JavaScript to improve my skills in JavaScript,
specifically in DOM manipulation, event handling, and dynamic UI
interactions. This project showcases core front-end development
concepts.
</p>
<a href="https://tic-tac-toe-game-js-project-01.netlify.app"
target="_blank"><i class="fas fa-external-link-alt"></i
></a>
</div>
</div>
</div>
<a href="https://app.netlify.com/teams/abdullahrfa/sites" class="btn" target="_blank">See more</a>
</div>
</div>
<!-- Contact -->
<div id="contact">
<div class="container">
<div class="row">
<div class="contact-left">
<h1 class="sub-title">Contact Me</h1>
<p><i class="fas fa-paper-plane"></i><a href="mailto:shakibrybmn@gmail.com?subject=Hello%20there&body=I%20would%20like%20to%20know%20more%20about..." id="email_add">shakibrybmn@gmail.com</a></p>
<p><i class="fas fa-phone-square"></i><a href="tel:+8801716260866" id="phone">01716260866</a></p>
<div class="social-icons">
<a href="https://www.facebook.com/profile.php?id=100008509008772" target="_blank"><i class="fab fa-facebook"></i></a>
<a href="https://x.com/AbdullahRFA" target="_blank"><i class="fab fa-twitter-square"></i></a>
<a href="https://github.com/AbdullahRFA" target="_blank"><i class="fa-brands fa-github"></i></a>
<a href="https://www.linkedin.com/in/abdullah-nazmus-sakib-04024b261/" target="_blank"><i class="fab fa-linkedin"></i><a>
</div>
<a href="https://github.com/AbdullahRFA/IOT_JU_1st_BATCH/raw/main/CV/CV.pdf" target="_blank" download="Personal_Portfolio_Website.pdf" class="btn btn2">Download CV</a>
</div>
<div class="contact-right">
<form action="submit-to-google-sheet" name="submit-to-google-sheet">
<input
type="text"
name="Name"
placeholder="Your Name "
required
/>
<input
type="email"
name="Email"
placeholder="Your Email"
required
/>
<textarea
name="Message"
id=""
rows="6"
placeholder="Your Message"
></textarea>
<button type="submit" class="btn btn2">Submit</button>
</form>
<span id="msg"></span>
</div>
</div>
</div>
<div class="copy-right">
<p>
© 2024 Abdullah Nazmus-Sakib <i class="fas fa-heart"></i> . All
rights reserved.
</p>
</div>
</div>
<script>
var tablinks = document.getElementsByClassName("tab-links");
var tabcontents = document.getElementsByClassName("tab-contents");
function opentab(tabname) {
for (var tablink of tablinks) {
tablink.classList.remove("active-link");
}
for (var tabcontent of tabcontents) {
tabcontent.classList.remove("active-tab");
}
event.currentTarget.classList.add("active-link"); // Add active class to clicked tab
document.getElementById(tabname).classList.add("active-tab"); // Show selected content
}
</script>
<script>
var sidemenu = document.getElementById("sidemenu");
function openmenu() {
sidemenu.style.right = "0";
}
function closemenu() {
sidemenu.style.right = "-200px";
}
</script>
<script>
const scriptURL = 'https://script.google.com/macros/s/AKfycbwRRuxWa5RiaeWaYRDPn-e43rbACjz7jfvWtVLXMqufmpsAwew9rLYxH0-SVngOSfU-/exec'
const form = document.forms['submit-to-google-sheet']
const msg = document.getElementById("msg")
form.addEventListener('submit', e => {
e.preventDefault()
fetch(scriptURL, { method: 'POST', body: new FormData(form)})
.then(response => {
msg.innerHTML="Message Sent Successfully"
setTimeout(function(){
msg.innerHTML=""
},5000)
form.reset()
})
.catch(error => console.error('Error!', error.message))
})
</script>
<script src="Greatin_Mesage.js"></script>
<script src="auto_type_text.js"></script>
</body>
</html>