-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
120 lines (111 loc) · 4.94 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Uzma Khan is professionally trained frontend web developer based in Pakistan.">
<!--Google Fonts -->
<link
href="https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;800&family=Poppins:wght@300&display=swap"
rel="stylesheet">
<!-- Fontawesome -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href=" https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css">
<!-- custom css -->
<link rel="stylesheet" href="style.css">
<title> Frontend Developer - About page</title>
</head>
<body>
<!-- Navbar -->
<nav class="navbar navbar-expand-lg bg-white fixed-top shadow">
<div class="container">
<a class="navbar-brand" href="/" title="HomePage">Uzma Khan</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav"
aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav ms-auto">
<li class="nav-item">
<a class="nav-link" aria-current="page" href="/" title="HomePage">Home</a>
</li>
<li class="nav-item">
<a class="nav-link active" href="/about.html" title="About Uzma Khan">About me</a>
</li>
<li class="nav-item">
<a class="nav-link" href="/work.html" title="Uzma's Work">My Work</a>
</li>
<li class="nav-item">
<a class="nav-link" href="/contact.html" title="Contact Uzma Khan">Contact me</a>
</li>
</ul>
</div>
</div>
<!-- /container -->
</nav>
<!-- /navbar -->
<!-- Bootstrap Grid -->
<div class="container about-section">
<div class="row">
<div class="col-md-6">
<div class="about-content ms-5">
<h1>Hi, I am Uzma Khan</h1>
<h2 class="my-4">A Passionate Front-end developer, based in Pakistan </h2>
<p class="text-muted">Hi there! I'm excited about the opportunity to join your team as a frontend intern. </p>
<p class="text-muted">
I've been developing a strong foundation in HTML, CSS, Bootstrap and JavaScript. I've also had the chance to
work on "myteam-opensourse project", on frontend Queens platform. where I accomplished the header of the
site with mobile-sidemenu.
</p>
<p class="text-muted">What I love most about frontend development is the ability to create visually appealing
and user-friendly interfaces. I'm eager to enhance my skills in a team-work with real-world projects. And this I
can do contributing to your team's projects.</p>
</div>
</div>
<!-- /col-6 -->
<div class="col-md-6 about-img mt-5 pt-5">
<img src="images/about-me.jpg" alt="Uzma Khan" class="img-fluid w-75">
</div>
<!-- /col-6 -->
<div class="col-md-12 mt-4">
<p class="text-muted">I'm a dedicated and collaborative team player with a strong problem-solving mindset. I'm
confident that my skills and enthusiasm will be a valuable asset to your team.</p>
<p class="text-muted">Thank you for considering my application. I look forward to the possibility of working together.</p>
<a href="/work.html" class="btn btn-branding" title="My Work">See My Projects</a>
</div>
</div>
<!-- /about-me -->
</div>
<!-- /row -->
<!-- Footer -->
<footer>
<div class="contact-box bg-light d-flex flex-row justify-content-around p-5 rounded d-none d-md-flex">
<div>
<h4 class="fw-bold">Work Inquiry</h4>
<p class="text-muted">Let's work together</p>
</div>
<div>
<a href=/contact.html" class="btn btn-branding" title="Contact Uzma Khan">Let's Connect</a>
</div>
</div>
<!-- /contact-box -->
<div class="social-links d-flex justify-content-center m-5">
<a href="https://github.com/Uzmakh" title="GitHub Profile" target="_blank">
<i class="fab fa-github" aria-hidden="true"></i>
</a>
<a href="https://www.linkedin.com/in/uzmakh" title="LinkedIn Profile" target="_blank">
<i class="fab fa-linkedin" aria-hidden="true"></i>
</a>
<a href="https://twitter.com/uzma_iffat" title="Twitter Profile" target="_blank">
<i class="fab fa-twitter" aria-hidden="true"></i>
</a>
</div>
</footer>
<!-- /Footer -->
</div>
<!-- /container -->
<!-- Bootstrap Js -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
</body>
</html>