-
Notifications
You must be signed in to change notification settings - Fork 0
/
contactus.html
80 lines (73 loc) · 3.24 KB
/
contactus.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="contactus.css">
<script src="https://kit.fontawesome.com/cddafee4d9.js" crossorigin="anonymous"></script>
<link href='https://fonts.googleapis.com/css?family=Cinzel Decorative' rel='stylesheet'>
</head>
<body>
<section>
<div class="container">
<div class="contactInfo">
<div>
<h2>Contact Info</h2>
<ul class="info">
<li>
<span><i class="fa-solid fa-location-dot"></i></span>
<span>Ambience Island, DLF Phase 3<br>
Sector 24, Gurugram
<br>Haryana 122022</span>
</li>
<li>
<span><i class="fa-sharp fa-solid fa-envelope"></i></span>
<span>tsriramvarma@gmail.com</span>
</li>
<li>
<span><i class="fa-solid fa-phone"></i></span>
<span>0686789698</span>
</li>
</ul>
</div>
<ul class="sci">
<li><a href="https://www.facebook.com/" target="_blank" class="fab fa-facebook-f"> </a></li>
<li><a href="https://twitter.com/i/flow/login" target="_blank" class="fab fa-twitter"></a></li>
<li><a href="https://www.instagram.com/?hl=en" target="_blank" class="fab fa-instagram"></a></li>
<li><a href="https://in.linkedin.com/" target="_blank" class="fab fa-linkedin"></a></li>
</ul>
</div>
<div class="contactForm">
<h2>Send a Message</h2>
<div class="formBox">
<div class="inputBox w50">
<input type="text" required>
<span>First Name</span>
</div>
<div class="inputBox w50">
<input type="text" required>
<span>Last Name</span>
</div>
<div class="inputBox w50">
<input type="text" required>
<span>Email Address</span>
</div>
<div class="inputBox w50">
<input type="text" required>
<span>Mobile Number</span>
</div>
<div class="inputBox w100">
<textarea required></textarea>
<span>Write your message here...</span>
</div>
<div class="inputBox w100">
<input type="submit" value="Send">
</div>
</div>
</div>
</div>
</section>
</body>
</html>