-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
162 lines (156 loc) · 7.38 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
<!DOCTYPE html>
<html lang="en">
<head>
<title>Codester | Contact</title>
<meta charset="utf-8">
<link rel="icon" href="http://dzyngiri.com/favicon.png" type="image/x-icon">
<link rel="shortcut icon" href="http://dzyngiri.com/favicon.png" type="image/x-icon" />
<meta name="description" content="Codester is a free responsive Bootstrap template by Dzyngiri">
<meta name="keywords" content="free, template, bootstrap, responsive">
<meta name="author" content="Inbetwin Networks">
<link rel="stylesheet" href="css/bootstrap.css" type="text/css" media="screen">
<link rel="stylesheet" href="css/responsive.css" type="text/css" media="screen">
<link rel="stylesheet" href="css/style.css" type="text/css" media="screen">
<link href='http://fonts.googleapis.com/css?family=Open+Sans:400,300' rel='stylesheet' type='text/css'>
<script type="text/javascript" src="js/jquery.js"></script>
<script type="text/javascript" src="js/superfish.js"></script>
<script type="text/javascript" src="js/jquery.easing.1.3.js"></script>
<script type="text/javascript" src="js/jquery.cookie.js"></script>
<script src="js/forms.js"></script>
<script>
jQuery(window).load(function() {
jQuery('.spinner').animate({'opacity':0},1000,'easeOutCubic',function (){jQuery(this).css('display','none')});
});
</script>
<!--[if lt IE 8]>
<div style='text-align:center'><a href="http://www.microsoft.com/windows/internet-explorer/default.aspx?ocid=ie6_countdown_bannercode"><img src="http://www.theie6countdown.com/img/upgrade.jpg"border="0"alt=""/></a></div>
<![endif]-->
<!--[if (gt IE 9)|!(IE)]><!-->
<!--<![endif]-->
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<link rel="stylesheet" href="css/docs.css" type="text/css" media="screen">
<link rel="stylesheet" href="css/ie.css" type="text/css" media="screen">
<link href='http://fonts.googleapis.com/css?family=Open+Sans:300' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Open+Sans:400' rel='stylesheet' type='text/css'>
<![endif]-->
<!--Google analytics code-->
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-29231762-1']);
_gaq.push(['_setDomainName', 'dzyngiri.com']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</head>
<body>
<div class="spinner"></div>
<!-- header -->
<header>
<div class="container clearfix">
<div class="row">
<div class="span12">
<div class="navbar navbar_">
<div class="container">
<h1 class="brand brand_"><a href="index.html"><img alt="" src="img/logo.png"> </a></h1>
<a class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse_">Menu <span class="icon-bar"></span> </a>
<div class="nav-collapse nav-collapse_ collapse">
<ul class="nav sf-menu">
<li><a href="index.html">Home</a></li>
<li><a href="work.html">Work</a></li>
<li><a href="blog.html">Blog</a></li>
<li class="sub-menu"><a href="process.html">Process</a>
<ul>
<li><a href="#">Process 01</a></li>
<li><a href="#">Process 02</a></li>
<li><a href="#">Process 03</a></li>
</ul>
</li>
<li class="active"><a href="contact.html">Contact</a></li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
</header>
<div class="bg-content">
<!-- content -->
<div id="content"><div class="ic"></div>
<div class="container">
<div class="row">
<article class="span8">
<h3>Contact us</h3>
<div class="inner-1">
<form id="contact-form">
<div class="success"> Your message has been sent succesfuly!<strong> We will be in touch soon.</strong> </div>
<fieldset>
<div>
<label class="name">
<input type="text" value="Your name">
<br>
<span class="error">*This is not a valid name.</span> <span class="empty">*This field is required.</span> </label>
</div>
<div>
<label class="phone">
<input type="tel" value="Telephone">
<br>
<span class="error">*This is not a valid phone number.</span> <span class="empty">*This field is required.</span> </label>
</div>
<div>
<label class="email">
<input type="email" value="Email">
<br>
<span class="error">*This is not a valid email address.</span> <span class="empty">*This field is required.</span> </label>
</div>
<div>
<label class="message">
<textarea>Message</textarea>
<br>
<span class="error">*The message is too short.</span> <span class="empty">*This field is required.</span> </label>
</div>
<div class="buttons-wrapper"> <a class="btn btn-1" data-type="reset">Clear</a> <a class="btn btn-1" data-type="submit">Send</a></div>
</fieldset>
</form>
</div>
</article>
<article class="span4">
<h3>Contact info</h3>
<div class="map">
<a href="http://dribbble.com/shots/624850-Presentaion-image-1" target="_blank"><img src="img/map.jpg" alt="Location on Map" /></a>
</div>
<address class="address-1">
<strong>Inbetwin Networks,<br>
Paud Phata, Road,<br>
Kothrud, Pune-38.</strong>
<div class="overflow"> <span>Mobile:</span>+91 12345 67890<br>
<span>Telephone:</span>+91 12345 67890<br>
<span>FAX:</span>+91 12345 67890 <br>
<span>E-mail:</span> <a href="#" class="mail-1">[email protected]</a><br>
<span>Skype:</span> <a href="#" class="mail-1">@woohooo</a></div>
</address>
</article>
</div>
</div>
</div>
</div>
<!-- footer -->
<footer>
<div class="container clearfix">
<ul class="list-social pull-right">
<li><a class="icon-1" href="#"></a></li>
<li><a class="icon-2" href="#"></a></li>
<li><a class="icon-3" href="#"></a></li>
<li><a class="icon-4" href="#"></a></li>
</ul>
<div class="privacy pull-left">© 2013 | <a href="http://www.dzyngiri.com">Dzyngiri : Online Design Magazine</a> | <a href="http://twitter.github.com/bootstrap/" target="_blank">Bootstrap</a> | Demo Illustrations by <a href="http://justinmezzell.com" target="_blank">Justin Mezzell</a></div>
</div>
</footer>
<script type="text/javascript" src="js/bootstrap.js"></script>
</body>
</html>