-
Notifications
You must be signed in to change notification settings - Fork 1
/
contact us.html
76 lines (62 loc) · 2.67 KB
/
contact us.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Contact Us - Uncle Yaks</title>
<link rel="stylesheet" href="contactstyle.css">
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap rel=stylesheet">
</head>
<body>
<div class="container">
<h1>Connect With Us</h1>
<p>We would love to respond to your queries and help to serve you better. <br>Feel free to get in touch with us</p>
<div class="container-box">
<div class="contact-left">
<h3>Send your message</h3>
<form>
<div class="input-row">
<div class="input-group">
<label>Name</label>
<input type="text" placeholder="Name">
</div>
<div class="input-group">
<label>Phone</label>
<input type="text" placeholder="+234 814 010 5050">
</div>
</div>
<div class="input-row">
<div class="input-group">
<label>Email</label>
<input type="email" placeholder="[email protected]">
</div>
<div class="input-group">
<label>Subject</label>
<input type="text" placeholder="Enquiry Subject">
</div>
</div>
<label>Message</label>
<textarea rows="5" placeholder="Your Message"></textarea>
<button type="submit">SEND</button>
</form>
</div>
<div class="contact-right">
<h3>Reach Us</h3>
<table>
<tr>
<td>Email</td>
<td>yakszy2.gmail.com</td>
</tr>
<tr>
<td>Phone</td>
<td>+2348140105050</td>
</tr>
<tr>
<td>Address</td>
<td>No 17, Hanwa Road GRA,<br> Zaria<br>Kaduna-Nigeria</td>
</tr>
</table>
</div>
</div>
</div>
</body>
</html>