forked from SayyadArshad/indian-electricity_wedsite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
contactus.html
73 lines (72 loc) · 3.02 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title> CONTACT US </title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" type="text/css" href="contactus.css">
</head>
<body>
<section class="contact">
<div class="content">
<h2><b>CONTACT US</b></h2>
<p><h3> Sector Plays a Big Role in the Progress
of the Country and Contributes to both ease of
Living and Ease of doing Business</h3></p>
</div>
<div class="container">
<div class="contactInfo">
<div class="box">
<div class="icon"><i class="fa fa-map-marker" aria-hidden="true"></i></div>
<div class="text">
<h3>Address</h3>
<p>36, Sector 5, Rama Krishna Puram,<br>New Delhi,<br> Delhi 110066</p>
</div>
</div>
<div class="box">
<div class="icon"><i class="fa fa-phone" aria-hidden="true"></i></div>
<div class="text">
<h3>Phone</h3>
<p>011 2673 2500</p>
</div>
</div>
<div class="box">
<div class="icon"><i class="fa fa-phone" aria-hidden="true"></i></div>
<div class="text">
<h3>Phone</h3>
<p>1800-180-1512</p>
</div>
</div>
<div class="box">
<div class="icon"><i class="fa fa-envelope-o" aria-hidden="true"></i></div>
<div class="text">
<h3>Email</h3>
<p>narayanm[dot]up[at]gov[dot]in</p>
</div>
</div>
</div>
<div class="contactForm">
<form>
<h2>Send Message</h2>
<div class="inputBox">
<input type="text" name="" required="required">
<span>Full Name</span>
</div>
<div class="inputBox">
<input type="text" name="" required="required">
<span>Email</span>
</div>
<div class="inputBox">
<input type="text" name="" required="required">
<span>Type your Message......</span>
</div>
<div class="inputBox">
<input type="submit" name="" value="Send">
</div>
</form>
</div>
</div>
</div>
</section>
</body>
</html>