-
Notifications
You must be signed in to change notification settings - Fork 0
/
About.html
85 lines (78 loc) · 3.71 KB
/
About.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
<!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>About page</title>
<link rel="stylesheet" href="style.css">
<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@100;300;400;500;600;700;900&display=swap"
rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.1/css/all.min.css"
integrity="sha512-MV7K8+y+gLIBoVD59lQIYicR65iaqukzvf/nwasF0nqhPay5w/9lJmVM2hMDcnK1OnMGCdVK+iQrJ7lzPJQd1w=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
</head>
<body>
<section class="hero">
<div class="main-width">
<header>
<div class="logo">
<i class="fa-solid fa-a"></i>
</div>
<nav>
<div class="hamb">
<span></span>
<span></span>
<span></span>
</div>
<ul class="navlist">
<li><a href="index.html">Home</a></li>
<li><a href="About.html">About</a></li>
<li><a href="services.html">Services</a></li>
<li><a href="Education.html">Education</a></li>
<li class="btn"><a href="contact.html">Contact Me</a></li>
</ul>
</nav>
</header>
<div class="about-main">
<div class="about-child">
<h1>Who am I ?</h1><br>
<p><b>A Web Designer / Developer Located In Our Lovely Earth</b></p><br>
<p>My Name is Abdullah Student of Software Engineering in Government Collage University Faisalabad.I'm a Web Developer and UX Designer and has 3 years of experinece in my field with a good reputation</p><br>
<button onclick="window.print()" class="print-cv-btn">Print CV</button>
</div>
<div class="about-child">
<h1>Personal Information</h1>
<br>
<ul style="list-style: none;">
<li><b>Birthday:</b>xx/xx/xxxx</li>
<br>
<li><b>Email:</b>[email protected]</li>
<br>
<li><b>Phone:</b>0306-1356081</li>
<br>
<li><b>Address:</b>XXX XXXXXX XXXX</li>
<br>
</ul>
</div>
<div class="about-child">
<h1>My Experties</h1>
<p><b>Ux Design</b></p>
<p>I have Good Exprience in Ux Designing and im popular for the easy and good looking designs in my company.</p><br>
<p><b>Web Development</b></p>
<p>I have Good Experties in Front-end-Development,and has much experience in web Applications and websites specially in Front-End.</p><br>
<p><b>Digital Marketing</b></p>
<p>I have Experience in digital marketing specially in Email Marketing and socia media</p><br>
</div>
</div>
<div class="bottom">
<p>@ 2022 Abdullah - All Right Reserved.</p>
</div>
</div>
</div>
</section>
<script type="text/javascript" src="script.js"></script>
</body>
</html>