-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
162 lines (160 loc) · 4.68 KB
/
contact.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
<!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/bootstrap@5.3.1/dist/css/bootstrap.min.css"
/>
<!-- custom css -->
<link rel="stylesheet" href="style.css" />
<title>Contact Uzma Khan - Contact 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="/index.html"
title="HomePage"
>Home</a
>
</li>
<li class="nav-item">
<a class="nav-link" 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 active"
href="/contact.html"
title="Contact Uzma Khan"
>Contact me</a
>
</li>
</ul>
</div>
</div>
<!-- /container -->
</nav>
<!-- /navbar -->
<div class="container">
<div class="contact-content">
<h1 class="mb-5">Let's get in touch!</h1>
<h3>Email</h3>
<p>
<a href="mailto:urbazoha@gmail.com" title="Email to Uzma Khan"
>urbazoha@gmail.com
</a>
</p>
<h3>Twitter</h3>
<p>
<a
href="https://www.twitter.com/uzma-iffat"
title="Twitter Profile"
target="_blank"
>@uzma-iffat
</a>
</p>
<h3>LinkedIn</h3>
<p>
<a
href="https://www.linkedin.com/in/uzmakh"
title="LinkedIn Profile"
target="_blank"
>@uzmakh
</a>
</p>
</div>
<!-- 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="/" class="btn btn-branding" title="Contact Uzma Khan"
>Let's Connect</a
>
</div>
</div>
<!-- /contact-box -->
<div class="d-flex justify-content-center m-5">
<a
href="mailto:urbazoha@gmail.com"
class="email-link"
title="Email to Uzma Khan"
>urbazoha@gmail.com</a
>
</div>
<div class="social-links d-flex justify-content-center">
<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://www.twitter.com/uzma_iffat"
title="Twitter Profile"
target="_blank"
>
<i class="fab fa-twitter" aria-hidden="true"></i>
</a>
</div>
</footer>
<!-- /Footer -->
</div>
<!-- /container -->
</body>
</html>