-
Notifications
You must be signed in to change notification settings - Fork 1
/
contact.html
98 lines (92 loc) · 3.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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>AppTheme | Contact</title>
<link rel="stylesheet" href="css/flexboxgrid.css">
<link rel="stylesheet" href="css/font-awesome.css">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<!-- HEADER -->
<header id="main-header">
<div class="container">
<div class="row end-sm end-md end-lg center-xs middle-xs middle-sm middle-md middle-lg">
<div class="col-xs-12 col-sm-2 col-md-2 col-lg-2">
<h1><span class="primary-text">App</span>Theme</h1>
</div>
<div class="col-xs-12 col-sm-10 col-md-10 col-lg-10">
<nav id="navbar">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="services.html">Services</a></li>
<li class="current"><a href="contact.html">Contact</a></li>
</ul>
</nav>
</div>
</div>
</div>
</header>
<!-- SUBHEADER -->
<section id="subheader">
<div class="container">
<div class="row">
<div class="col-xs-12 col-sm-12 col-md-12 col-lg-12">
<h1>Contact</h1>
</div>
</div>
</div>
</section>
<!-- MAIN PAGE -->
<section id="page" class="contact">
<div class="container">
<div class="row center-xs center-sm center-md center-lg">
<div class="col-xs-12 col-sm-12 col-md-12 col-lg-12">
<h2><span class="primary-text">Get</span> In Touch</h2>
<p>Please use this form to contact us</p>
<form>
<div>
<label for="name">Name</label><br>
<input type="text" name="name">
</div>
<div>
<label for="email">Email</label><br>
<input type="text" name="email">
</div>
<div>
<label for="message">Message</label><br>
<textarea name="message"></textarea>
</div>
<button type="submit" name="button">Submit</button>
</form>
</div>
</div>
</div>
</section>
<section id="company">
<div class="container">
<div class="row">
<div class="col-xs-12 col-sm-4 col-md-4 col-lg-4">
<h4>Contact Us</h4>
<ul>
<li><i class="fa fa-phone"> 9554274648</i></li>
<li><i class="fa fa-envelope"> [email protected]</i></li>
<li><i class="fa fa-map"> B 26 Saket Nagar</i></li>
</ul>
</div>
<div class="col-xs-12 col-sm-4 col-md-4 col-lg-4">
<h4>About Us</h4>
<p>sample text here write any thing you want to tell about your company</p>
</div>
<div class="col-xs-12 col-sm-4 col-md-4 col-lg-4">
<h4>News letter</h4>
<input type="text" name="email" placeholder="enter email"><button>Submit</button>
<p>Sample text here</p>
s
</div>
</div>
</div>
</section>
</body>
</html>