-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
72 lines (68 loc) · 2.26 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Contact us</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<table id="Home">
<tr>
<td align="center"><img src="logo.png" alt=""></td>
<td align="center"><a href="index.html">Home</a></td>
<td align="center"><a href="help.html">Help</a></td>
<td align="center"><a href="#">Contact us</a></td>
</tr>
</table>
<div class="container">
<h1>Connect with us</h1>
<p>We would love to response to your queries and help you succeed. Feel free to get in touch with us</p>
<div class="contact-box">
<div class="contact-left">
<h3>Sent your request</h3>
<form>
<div class="input-row">
<div class="input-group">
<label>Name</label>
<input type="text" placeholder="John Smith examp;">
</div>
<div class="input-group">
<label>Phone</label>
<input type="text" placeholder="+1 512 321 5183 examp;">
</div>
</div>
<div class="input-row">
<div class="input-group">
<label>Email</label>
<input type="email" placeholder="[email protected] examp;">
</div>
<div class="input-group">
<label>Subject</label>
<input type="text" placeholder="product demo examp;">
</div>
</div>
<label>Massage</label>
<textarea rows="5" placeholder="Your massage"></textarea>
<button type="submit">Send</button>
</form>
</div>
<div class="contact-right">
<h3>Reech us</h3>
<table>
<tr>
<td>Email</td>
<td>[email protected]</td>
</tr>
<tr>
<td>Phone</td>
<td>03313317621</td>
</tr>
<tr>
<td>Address</td>
<td>Nazimabad gol market block 3e commercial area <br> tariq market 4th flor flat#14</td>
</tr>
</table>
</div>
</div>
</div>
</body>
</html>