-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcontact.html
More file actions
165 lines (150 loc) · 4.68 KB
/
contact.html
File metadata and controls
165 lines (150 loc) · 4.68 KB
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
163
164
165
<!DOCTYPE html>
<html>
<head>
<title>Basic Website</title>
<link rel="stylesheet" type="text/css" href="style.css">
<link rel="stylesheet" type="text/css" href="font-awesome-4.7.0/css/font-awesome.css">
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.6.4/jquery.min.js"></script>
</head>
<body>
<div class="headersection templete clear">
<div class="logo templete clear">
<img src="images/dove.png" alt="Logo">
<h2>Website Titel</h2>
<p>Our website description</p>
</div>
<div class="social templete clear">
<a target="_blank" href="http://www.facebook.com"><i class="fa fa-facebook-square" aria-hidden="true"></i></a>
<a target="_blank" href="http://www.gmail.com"><i class="fa fa-google-plus" aria-hidden="true"></i></a>
<a target="_blank" href="http://www.linkedin.com"><i class="fa fa-linkedin" aria-hidden="true"></i></a>
</div>
</div>
<div class="navsection templete">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="item.html">Item</a></li>
<li><a href="itemtwo.html">Item Two</a></li>
<li><a href="countdown.html">Countdown</a></li>
<li><a href="about.html">Product</a>
<ul>
<li><a href="#">Product One</a></li>
<li><a href="#">Product two</a></li>
<li><a href="#">Product three</a></li>
<li><a href="#">Product four</a></li>
<li><a href="#">Product five</a></li>
</ul>
</li>
<li><a id="active" href="contact.html">Contact</a></li>
</ul>
</div>
<div class="contentsection contemplete clear">
<div class="maincontent clear">
<div class="contact">
<h2>Contact Us</h2>
<table>
<tr>
<td>Your First Name</td>
<td>
<input type="text" name="firstname" placeholder="Enter firstname">
</td>
</tr>
<tr>
<td>Your Last Name</td>
<td>
<input type="text" name="lastname" placeholder="Enter lastname">
</td>
</tr>
<tr>
<td>Your Emali</td>
<td>
<input type="email" name="email" placeholder="Enter email">
</td>
</tr>
<tr>
<td>Your Message</td>
<td>
<textarea></textarea>
</td>
</tr>
<tr>
<td></td>
<td>
<input type="submit" name="submit" value="submit">
</td>
</tr>
</table>
</div>
<div class="googlemp">
<div id="map"></div>
</div>
</div>
<div class="sidebar clear">
<div class="samesidebar clear">
<h2>Latest articles</h2>
<ul>
<li><a href="#">Post titel one will be go here</a></li>
<li><a href="#">Post titel two will be go here</a></li>
<li><a href="#">Post titel three will be go here</a></li>
<li><a href="#">Post titel four will be go here</a></li>
<li><a href="#">Post titel five will be go here</a></li>
<li><a href="#">Post titel six will be go here</a></li>
</ul>
</div>
<div class="samesidebar clear">
<h2>Sidebar one header</h2>
<p>
Lorem Ipsum is simply dummy text of the printing and typesetting industry.
</p>
<p>
1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.
</p>
</div>
<div class="samesidebar clear">
<h2>Sidebar one header</h2>
<p>
Lorem Ipsum is simply dummy text of the printing and typesetting industry.
</p>
<p>
1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.
</p>
</div>
</div>
</div>
<div class="footersection templete clear">
<div class="footermenu"></div>
<p>© Compyright Training with Live Project.</p>
</div>
<div class="fixedicon clear">
<a href="http://www.facebook.com"><img src="images/facebook.png" alt="Facebook"></a>
<a href="http://www.gmail.com"><img src="images/gmail.png" alt="Gmail"></a>
<a href="http://www.linkedin.com"><img src="images/linkedin.png" alt="Linkedin"></a>
</div>
<script src="http://maps.google.com/maps/api/js"></script>
<script src="js/gmaps.js"></script>
<script type="text/javascript">
var map;
$(document).ready(function(){
var map = new GMaps({
el: '#map',
lat: 23.7507559,
lng: 90.3662285
});
GMaps.geolocate({
success: function(position){
map.setCenter(position.coords.latitude, position.coords.longitude);
},
error: function(error){
alert('Geolocation failed: '+error.Message);
},
not_supported: function(){
alert("Your browser does not support geolocation");
},
always: function(){
alert("Done!");
}
});
});
</script>
</body>
</html>