-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
88 lines (81 loc) · 3 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.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:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap" rel="stylesheet">
</head>
<body>
<div id="navbar">
<nav>
<a href="index.html"><i class="fa-solid fa-house"></i></a>
<a href="about.html"><i class="fa-solid fa-user"></i></a>
<a href="portfolio.html"><i class="fa-solid fa-briefcase"></i></a>
<a href="blog.html"><i class="fa-solid fa-newspaper"></i></a>
<a href="#"><i class="fa-solid fa-envelope-open"></i></a>
</nav>
</div>
<div class="contact-head">
<h1>CONTACT <span>ME</span></h1>
</div>
<div id="contact-me">
<h2>Contact me here</h2>
<table>
<tr>
<td>
<h4><i class="fa-solid fa-location-dot"></i> LOCATION:</h4>
</td>
<td><h4> Golarchi, Pakistan</h4></td>
</tr>
<tr>
<td><h4><i class="fa-solid fa-envelope"></i> E-MAIL:</h4></td>
<td>[email protected]</td>
</tr>
<tr>
<td><h4><i class="fa-solid fa-user-graduate"></i> EDUCATION:</h4></td>
<td> Middle, S.O.E Golarchi</td>
</tr>
<tr>
<td><h4><i class="fa-solid fa-phone"></i> MOBILE NUMBER:</h4></td>
<td><h4>########</h4></td>
</tr>
<tr>
<td><h4><i class="fa-solid fa-earth-asia"></i> LANGUAGES:</h4></td>
<td><h4>Urdu, English & Pashto</h4></td>
</tr>
</table>
</div>
<div class="contact-icons">
<div class="contact-icon">
<a href="https://www.facebook.com/profile.php?id=100090027683174" target="_blank">
<i class="fab fa-facebook-f"></i>
</a>
<a href="#" target="_blank">
<i class="fab fa-twitter"></i>
</a>
<a href="https://github.com/huzaifais786" target="_blank">
<i class="fab fa-github"></i>
</a>
<a href="https://youtube.com/@MHWorldByHuzaifa?si=nnbGqX44R-0YXGqq" target="_blank">
<i class="fab fa-youtube"></i>
</a>
</div>
</div>
<hr class="hr-about">
<div id="contact-form">
<form>
<input type="text" placeholder="YOUR NAME">
<br><br>
<input type="email" placeholder="YOUR E-MAIL">
<br><br>
<textarea placeholder="MESSAGE HERE.."></textarea><br>
<button type="submit">Submit</button>
</form>
</div>
</body>
</html>