-
Notifications
You must be signed in to change notification settings - Fork 1
/
form.html
76 lines (66 loc) · 3.11 KB
/
form.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>
<head>
<title>Elements - Stellar by HTML5 UP</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<!--[if lte IE 8]><script src="assets/js/ie/html5shiv.js"></script><![endif]-->
<link rel="stylesheet" href="assets/css/main.css" />
<!--[if lte IE 9]><link rel="stylesheet" href="assets/css/ie9.css" /><![endif]-->
<!--[if lte IE 8]><link rel="stylesheet" href="assets/css/ie8.css" /><![endif]-->
</head>
<body>
<h1 align="center">Form</h1>
<form method="post" action="#">
<div class="row uniform" style="padding-left: 90px;">
<div class="5u 12u$(xsmall)">
<input type="text" name="demo-name" id="demo-name" value="" placeholder="Name" />
</div>
<div class="5u$ 12u$(xsmall)">
<input type="email" name="demo-email" id="demo-email" value="" placeholder="Email" />
</div>
<div class="12u$">
<textarea name="demo-message" id="demo-message" placeholder="Enter your message" rows="6"></textarea>
</div>
<div class="12u$">
<ul class="actions">
<li><input type="submit" value="Send Message" class="special" /></li>
<li><input type="reset" value="Reset" /></li>
</ul>
</div>
</div>
</form>
<!-- Footer -->
<footer id="footer">
<section>
<h2>Indian Web Mart</h2>
<p>Nagpur based web development firm, specialising in websites & blogs. Also offering cloud based hosting. </p>
<ul class="actions">
<li><a href="https://www.indianwebmart.co.in/" target="_blank" class="button">Learn More</a></li>
</ul>
</section>
<section>
<h2>Get In Touch</h2>
<dl class="alt">
<dt>Address</dt>
<dd>INDIAN WEB MART CONSULTANCY & TRAINING INSTITUTE PVT. LTD.</dd>
<dd>1st Floor, 31-Gawande Layout,sneha nagar,Wardha Road, Nagpur - 440025</dd>
<dt>Phone</dt>
<dd>+91-712-2987227</dd>
<dt>Mobile</dt>
<dd>+91 9766572337</dd>
<dt>Website</dt>
<dd><a href="https://http//www.indianwebmart.co.in/" target="_blank">Indian Web Mart</a></dd>
</dl>
<!--<ul class="icons">
<li><a href="#" class="icon fa-twitter alt"><span class="label">Twitter</span></a></li>
<li><a href="#" class="icon fa-facebook alt"><span class="label">Facebook</span></a></li>
<li><a href="#" class="icon fa-instagram alt"><span class="label">Instagram</span></a></li>
<li><a href="#" class="icon fa-github alt"><span class="label">GitHub</span></a></li>
<li><a href="#" class="icon fa-dribbble alt"><span class="label">Dribbble</span></a></li>
</ul>-->
</section>
<p class="copyright">© IndianWebMart. Design: <a href="https://dayshmookh.github.io" target="_blank">R00t Inc.</a>.</p>
</footer>
</body>
</html>