-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
401 lines (370 loc) · 11.5 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
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
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
<link rel="stylesheet" href="style.css" />
<style>
/*//////////////header//////////////////////////////// */
.header {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
background: rgb(34, 193, 195);
background: linear-gradient(
0deg,
rgba(34, 193, 195, 1) 0%,
rgba(241, 198, 105, 1) 100%
);
}
/*/////////////////wrapperProjects///////////////////////////// */
.wrapperProjects{
padding: 10px;
background-color: rgb(218, 192, 192)
}
@media only screen and (max-width: 600px) {
.wrapperProjects {
background-color: red;
}
}
.projects {
display: flex;
flex-direction: column;
}
.projDetails {
display: flex;
flex-direction: column;
justify-content: center;
align-items: flex-start;
}
.projTexts {
display: flex;
flex-direction: column;
margin-left: 10px;
}
.proj {
display: flex;
flex-direction: row;
margin-bottom: 20px;
}
.projTitle {
font-size: 20px;
font-weight: bold;
margin-bottom: 20px;
}
.description {
font-size: 16px;
}
.link {
font-size: 14px;
}
.date {
font-size: 12px;
}
/*/////////////////wrapperExperience///////////////////////////// */
.wrapperExperience {
background-color: #a9cf77;
display: flex;
flex-direction: column;
width: 100%;
}
.experience {
display: inline-grid;
grid-template-columns: auto auto auto;
padding: 10px;
}
.gridItem {
background-color: rgba(255, 255, 255, 0.8);
border: 1px solid rgba(0, 0, 0, 0.8);
padding: 20px;
font-size: 10px;
text-align: center;
}
.image {
width: 200px;
height: 200px;
object-fit: cover;
border-radius: 5%;
}
/*//////////////wrapperSkills//////////////////////////////// */
.wrapperSkills {
background-color: rgb(208, 223, 224);
padding: 10px;
}
.skills {
display: flex;
flex-direction: row;
justify-content: space-around;
align-items: center;
flex-wrap: wrap;
/* align-items: center;
background-color: #2196F3;
padding: 10px; */
}
.skills div {
padding: 10px;
border: 1px solid black;
border-radius: 10%;
}
/*///////////////wrapperContact/////////////////////////////// */
.wrapperContact {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
background-color: #cf7777;
padding: 10px;
}
/*//////////////wrapperFooter//////////////////////////////// */
.wrapperFooter {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
background-color: #b9b9ce;
padding: 10px;
}
/*////////////////////////////////////////////// */
</style>
</head>
<body>
<div>
<div class="header">
<h1>Naseer Ullah Portfolio</h1>
<h2>
I am a FrontEnd Web designer and developer. I can create websites in HTML, CSS and JavaScript.
</h2>
<div style="display: flex; flex-direction: row; align-items: center; justify-content: center">
Current Date and Time: "<p id="demo"></p>"
</div>
</div>
<!-- <hr> -->
</div>
<div class="wrapper3d">Naseer Ullah</div>
<!-- //////////wrapperProjects////////////// -->
<div
class="wrapperProjects"
>
<div>
<h3>Projects</h3>
</div>
<div class="projects">
<div>
<div class="proj">
<div>
<img class="image" src="./assets/codexa.png" alt="image" />
</div>
<div class="projTexts">
<div class="projTitle">Codexa Blog</div>
<div class="projDetails">
<div class="description">A modern blog website</div>
<div class="link">
<a target="_blank" href="https://codexa-cyan.vercel.app/">Visit Codexa </a>
</div>
<div class="date">Date: 2024</div>
</div>
</div>
</div>
<div class="proj">
<div>
<img class="image" src="./assets/issueorbit.png" alt="image" />
</div>
<div class="projTexts">
<div class="projTitle">Issue Orbit</div>
<div class="description">
Issue Orbit is a nextjs app to track all the issues. All the
issues are saved with different statuses.
</div>
<div class="link">
<a target="_blank" href="https://issueorbit.vercel.app/">Visit Website</a>
</div>
<div class="date">Date: 2024</div>
</div>
</div>
<div class="proj">
<div>
<img class="image" src="./assets/gamehub.png" alt="image" />
</div>
<div class="projTexts">
<div class="projTitle">Game Hub</div>
<div class="description">
It is a games store like steam that contain games fetched from
rawg.io
</div>
<div class="link">
<a target="_blank" href="https://game-hub-self-ten.vercel.app/">View Site</a>
</div>
<div class="date">Date: 2024</div>
</div>
</div>
</div>
</div>
</div>
<!-- ///////wrapperExperience////////// -->
<div class="wrapperExperience">
<div class="expTitle">
<h1>Experience and Education</h1>
</div>
<div class="experience">
<div class="gridItem">
<h1>Bs Computer Science</h1>
<div>
<h2>AWKUM Mardan</h2>
<h3>2017-2021</h3>
</div>
</div>
<div class="gridItem">
<h1>FSc Pre Engineering</h1>
<div>
<h2>Farabi Peshawar</h2>
<h3>2015-2017</h3>
</div>
</div>
</div>
</div>
</div>
<!-- /////wrapperSkills////////// -->
<div class="wrapperSkills">
<div>
<h1>Skills</h1>
</div>
<div class="skills">
<div>Html</div>
<div>css</div>
<div>javascript</div>
<div>react</div>
<div>node</div>
<div>express</div>
<div>mongodb</div>
<div>sql</div>
<div>python</div>
<div>blender</div>
<div>3d</div>
<div>Mojo</div>
<div>Rust</div>
<div>Dart</div>
<div>Nextjs</div>
<div>Flutter</div>
<div>react native</div>
<div>php</div>
</div>
</div>
<!-- //////////wrapperFreelance//////////// -->
<div style="padding: 10px; background-color: rgb(236, 247, 140)" class="wrapperFreelance">
<div><h1>Buy My Work</h1></div>
<div class="freelance">
<div class="gridItem">
<h1><a target="_blank" href="https://www.fiverr.com/s/LdNvKVo">Web Design FrontEnd</a></h1>
<div>
<h2>HTML & CSS</h2>
<h3>Price: Variable</h3>
</div>
</div>
<div class="gridItem">
<h1><a target="_blank" href="https://www.upwork.com/freelancers/~01565464e8fb346376?mp_source=share">Upwork</a></h1>
<div>
<h2>Mobile & Web</h2>
<h3>Price: Miscellaneous</h3>
</div>
</div>
</div>
</div>
<!-- //////////////wrapperContact///////////////// -->
<div class="wrapperContact">
<div class="contactTitle">
<h1>Contact Us</h1>
</div>
<div class="contact">
<form action="https://formspree.io/f/mwpkqywo" method="POST">
<label for="name">Name:</label><br />
<input
style="
margin-top: 10px;
margin-bottom: 20px;
width: 400px;
height: 30px;
"
type="text"
id="name"
name="name"
placeholder="name"
/><br />
<label for="email">Email:</label><br />
<input
style="
margin-top: 10px;
margin-bottom: 20px;
width: 400px;
height: 30px;
"
type="text"
id="email"
name="email"
placeholder="email"
/><br />
<label for="message">Message:</label><br />
<textarea
style="margin-top: 10px; margin-bottom: 20px; width: 400px"
id="message"
name="message"
rows="4"
cols="50"
placeholder="message"
></textarea>
<br />
<button
style="
margin-bottom: 20px;
width: 80px;
height: 40px;
cursor: pointer;
"
type="submit"
>
Send
</button>
</form>
</div>
</div>
<!-- //////////////wrapperFooter/////////////// -->
<div class="wrapperFooter">
<div style="display: flex; flex-direction: row" class="copyrigt">
<div>Copyright © <span id="footerDate"></span> Naseer Ullah |</div>
<div>All rights reserved |</div>
<div>Powered by Naseer Ullah |</div>
<div>Theme by Naseer Ullah</div>
</div>
<div
style="padding-top: 5px; display: flex; flex-direction: row; gap: 10px"
>
<div>
GitHub :
<a target="_blank" href="https://github.com/NaseerUllahAwan">NaseerUllah</a>
</div>
<div>
LinkedIn :
<a target="_blank" href="https://www.linkedin.com/in/naseer-aziz-ullah-35a592184/"
>NaseerUllah</a
>
</div>
</div>
</div>
<!-- ////////////////////////// -->
<!-- <p id="demo">JavaScript can change HTML content.</p>
<button type="button" onclick="document.getElementById('demo').innerHTML = 'Hello JavaScript!'">Click Me!</button> -->
<!-- ///////////JavaScript/////////////// -->
<!-- For optimal performance, you should typically place the <script> tag at the bottom of your HTML document, just before the closing </body> tag; this ensures the page content loads before the JavaScript executes, leading to a faster user experience. -->
<script>
const d = new Date();
document.getElementById("demo").innerHTML = d;
const date = new Date().getFullYear();
document.getElementById("footerDate").innerHTML = date;
</script>
<!-- ////////////////////////// -->
</body>
</html>