forked from shehrozasghar/singlepage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
suppergirl95.html
436 lines (377 loc) · 10.2 KB
/
suppergirl95.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
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>An Effectivr CV</title>
<link rel="stylesheet" href="cv.css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css" />
<style>
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,200;0,500;1,200&display=swap");
* {
margin: 0px;
padding: 0px;
box-sizing: border-box;
font-family: "poppin", sans-serif;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
body {
background-color: cadetblue;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
}
.container {
position: relative;
background-color: cornsilk;
width: 100%;
max-width: 1000px;
min-height: 1000px;
margin: 45px;
display: grid;
grid-template-columns: 1fr 2fr;
box-shadow: 0 35px 55px rgba(0, 0, 0, 0.5);
}
.container .left-side {
position: relative;
background-color: rgb(32, 40, 48);
padding: 40px;
}
.left-text {
position: relative;
display: flex;
flex-direction: column;
align-items: center;
border-bottom: 1px solid #fff;
padding-bottom: 40px;
}
.left-text .proimg {
position: relative;
width: 200px;
height: 200px;
border-radius: 80%;
overflow: hidden;
}
.left-text .proimg img {
position: absolute;
top: 0px;
left: 0px;
width: 100%;
height: 100%;
object-fit: cover;
}
.left-text h2 {
color: #fff;
text-align: center;
text-transform: uppercase;
margin-top: 20px;
font-size: 1.5em;
font-weight: 600;
line-height: 1.4em;
}
.contact {
border-bottom: 1px solid #fff;
}
.title {
color: #fff;
text-transform: uppercase;
letter-spacing: 1px;
font-weight: 600;
padding-top: 20px;
margin-bottom: 20px;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.contact ul {
position: relative;
}
.contact ul li {
position: relative;
list-style: none;
margin: 20px;
font-weight: 300px;
}
.contact ul li .icon {
margin-right: 7px;
color: rgb(44, 106, 143);
}
.contact ul li .text {
margin-right:7px;
color: #fff;
}
.educatuon ul {
margin-bottom: 20px;
color: #fff;
}
.educatuon ul li {
margin: 20px;
}
.educatuon ul li h4 {
margin-bottom: 5px;
font-weight: 500px;
color: rgb(97, 104, 136);
}
.educatuon ul li h5:nth-child(2) {
color: #fff;
font-weight: 300px;
margin-bottom: 5px;
}
.language .percent {
position: relative;
width: 100%;
height: 6px;
background-color: gray;
display: block;
margin-top: 5px;
}
.language .percent div {
position: absolute;
top: 0;
left: 0;
height: 100%;
background-color: rgb(54, 66, 236);
}
.container .main-side {
position: relative;
background-color: rgb(206, 231, 255);
padding: 40px;
}
.about {
margin-bottom: 50px;
}
.about :last-child {
margin-bottom: 0px;
}
.title2 {
color: rgb(50, 74, 99);
text-transform: uppercase;
letter-spacing: 1px;
margin-bottom: 10px;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
p {
color: rgb(76, 76, 92);
}
.about .box {
display: flex;
flex-direction: row;
margin: 20px 0;
}
.about .box .year {
min-width: 150px;
}
.about .box .year h5 {
text-transform: uppercase;
color: grey;
font-weight: 600;
}
.about .box .text h4 {
text-transform: uppercase;
color: rgb(26, 166, 221);
font-size: 15px;
}
.Skills .box {
position: relative;
width: 100%;
display: grid;
grid-template-columns: 150px 1fr;
justify-content: center;
align-items: center;
}
.Skills .box h4 {
text-transform: uppercase;
color: gray;
font-weight: 500px;
}
.Skills .box .percent {
position: relative;
width: 100%;
height: 5px;
background-color: gray;
}
.Skills .box .percent div {
position: absolute;
top: 0;
left: o;
height: 100%;
background-color: rgb(54, 66, 236);
}
.Interests ul {
display: grid;
}
.Interests ul li {
list-style: none;
color: gray;
font-weight: 500;
margin: 5px 0;
}
.Interests ul li .fa {
color: rgb(44, 106, 143);
margin-right: 15px;
}
</style>
</head>
<body>
<div class="container">
<div class="left-side">
<div class="left-text">
<div class="proimg">
<img src="./supergirl.jpg" alt="There is an error" style="user-select: none;" />
</div>
<h2 style="font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif ;">
Suppergirl <br />
<span style="font-family:monospace;">Web Developer</span>
</h2>
</div>
<div class="contact">
<h3 class="title">Contact Information</h3>
<ul style="font-weight: 400;">
<li>
<span class="icon"><i class="fa fa-phone"></i></span>
<span class="text" style="font-weight: 400;">+92 345 2375258</span>
</li>
<li>
<span class="icon"><i class="fa fa-envelope-o"></i></span>
<span class="text" style="font-weight: 400;"> [email protected]</span>
</li>
<li>
<span class="icon"><i class="fa fa-globe"></i></span>
<span class="text" style="font-weight: 400;"> www.leatherJacket.com</span>
</li>
<li>
<span class="icon"><i class="fa fa-map-marker"></i></span>
<span class="text" style="font-size: medium;"> Pasrur, Sialkot, Pakistan</span>
</li>
</ul>
</div>
<div class="contact educatuon">
<h3 class="title">Education</h3>
<ul>
<li>
<h4>2014 - 2018</h4>
<h5>BS informaton technology</h5>
<h5>virtual university</h5>
</li>
<li>
<h4>2012 - 2014</h4>
<h5>Intermidiat</h5>
<h5>GC</h5>
</li>
<li>
<h4>2010 - 2012</h4>
<h5>Matericulation Degree</h5>
<h5>Govt High school</h5>
</li>
</ul>
</div>
<div class="contact language">
<h3 class="title">language</h3>
<ul>
<li>
<span class="text">English</span>
<div class="percent">
<div style="width: 55%"></div>
</div>
</li>
<li>
<span class="text">Urdu</span>
<div class="percent">
<div style="width: 90%"></div>
</div>
</li>
</ul>
</div>
</div>
<div class="main-side">
<div class="about">
<h2 class="title2">Profile</h2>
<p>
I always inspire by technology. Technology especially in computer
itrect me.Thats why I done my Intermidiate in computer science, and
recieve Basic IT lettricy degree after done 3 month deploma. Now I
studed in Information Technology(IT).<br /><br />
I want ot be an expert web Developer. It's my passion, my future
target and my goal. I do my goods to achieve my goal.
</p>
</div>
<div class="about">
<h2 class="title2">Experience</h2>
<div class="box">
<div class="year">
<h5>2021-Present</h5>
<h5>Company-Name</h5>
</div>
<div class="text">
<h4>Web Desioner</h4>
<p>
I'm Front-End web Developer with over 6 month experience in web
designing <br />
I always ready to adapt the changing deadlines to meet the
customer's need.
</p>
</div>
</div>
<div class="box">
<div class="year">
<h5>2019-2021</h5>
<h5>Company-Name</h5>
</div>
<div class="text">
<h4>IT manager</h4>
<p>
During my job as an IT manager, I managed all most all the thing
very well. I was appritiated by my senior many time because of
my good work and polite behavior. I got award of best IT manager
form my company. I also improve my IT skill, and learn many
things during may job
</p>
</div>
</div>
</div>
<div class="about Skills">
<h2 class="title2">Professional Skills</h2>
<div class="box">
<h4>HTML5</h4>
<div class="percent">
<div style="width: 95%"></div>
</div>
</div>
<div class="box">
<h4>CSS3</h4>
<div class="percent">
<div style="width: 85%"></div>
</div>
</div>
<div class="box">
<h4>javascript</h4>
<div class="percent">
<div style="width: 75%"></div>
</div>
</div>
<div class="box">
<h4>Photoshop</h4>
<div class="percent">
<div style="width: 60%"></div>
</div>
</div>
<div class="box">
<h4>Illustrator</h4>
<div class="percent">
<div style="width: 75%"></div>
</div>
</div>
</div>
<div class="about Interests">
<h2 class="title2">Interests</h2>
<ul>
<li><i class="fa fa-gamepad"></i>Gaming</li>
<li><i class="fa fa-book"></i>Reading</li>
<li><i class="fa fa-cutlery"></i>cooking</li>
<li><i class="fa fa-paint-brush"></i>painting</li>
</ul>
</div>
</div>
</div>
</body>
</html>