-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
181 lines (146 loc) · 8.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
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
<!doctype html>
<!--[if IE 7]> <html class="ie7" > <![endif]-->
<!--[if IE 8]> <html class="ie8" > <![endif]-->
<!--[if IE 9]> <html class="ie9" > <![endif]-->
<!--[if (gt IE 9)|!(IE)]><!--> <html lang="en-US"> <!--<![endif]-->
<head>
<!-- META TAGS -->
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width" />
<!-- Title -->
<title>Dr.Zamani Urologie Bretten</title>
<!-- FAVICON -->
<link rel="shortcut icon" href="images/favicon.png.png" />
<!-- Style Sheet-->
<link href='http://fonts.googleapis.com/css?family=Open+Sans:400italic,400,800,700,300' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Droid+Sans' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="js/prettyPhoto/css/prettyPhoto.css"/>
<link rel="stylesheet" href="js/flexslider/flexslider.css"/>
<link rel="stylesheet" href="css/jquery.ui.all.css"/>
<link rel="stylesheet" href="css/jquery.ui.theme.css"/>
<link rel="stylesheet" href="style.css"/>
<link rel="stylesheet" href="css/media-queries.css"/>
<link rel="stylesheet" href="css/custom.css"/>
<script src="js/jquery-1.8.2.min.js"></script>
<script>
$(document).ready(
function() {
$("#header").load("header.html");
});
$(document).ready(function() {
$("#footer-wrap").load("footer.html");
}
);
</script>
<!-- Pingback URL -->
<!-- HTML5 shim, for IE6-8 support of HTML5 elements -->
<!--[if lt IE 9]>
<script src="js/html5.js"></script>
<![endif]-->
</head>
<body>
<!-- Starting Website Wrapper -->
<div id="wrapper">
<!-- Starting Header of the website -->
<header id="header">
</header><!-- ending of header of the website -->
<hgroup class="page-head">
<h2>Kontaktieren Sie <span>uns</span></h2>
<h5>bewertung text Herr Zamani</h5>
</hgroup>
<div id="container" class="clearfix">
<div id="content">
<div class="map-container clearfix">
<div id="map_canvas"></div>
<script type="text/javascript" src="http://maps.googleapis.com/maps/api/js?sensor=false"></script>
<script type="text/javascript">
function initialize()
{
var geocoder = new google.maps.Geocoder();
var map;
var latlng = new google.maps.LatLng(49.038036, 8.701448);
var infowindow = new google.maps.InfoWindow();
var myOptions = {
zoom: 17,
mapTypeId: google.maps.MapTypeId.ROADMAP
};
map = new google.maps.Map(document.getElementById("map_canvas"), myOptions);
geocoder.geocode({'location': latlng},
function(results, status) {
if (status == google.maps.GeocoderStatus.OK)
{
map.setCenter(results[0].geometry.location);
var marker = new google.maps.Marker({
map: map,
position: results[0].geometry.location
});
}
else
{
alert("Geocode was not successful for the following reason: " + status);
}
});
}
initialize();
</script>
</div>
<address>
Melanchthonstraße 74<br>75015, Bretten<br>Deutschland<br>
</address>
<div class="contact-form-container">
<h3 class="smart-head">Kontaktformular</h3>
<p>Hier können Sie uns Ihre Anregung oder Kritik mitteilen!</p>
<form action="submit.php" id="contact-form" class="clearfix" method="post">
<div class="form-cell">
<label class="display-ie8" >Name:</label>
<input type="text" placeholder="Name" class="name required" name="author" title="* Please provide your name" /><span>*</span>
</div>
<div class="form-cell">
<label class="display-ie8" >Phone:</label>
<input type="text" placeholder="Phone No." class="phone" name="phone" />
</div>
<div class="form-cell">
<label class="display-ie8" >Email:</label>
<input type="text" placeholder="Email Address'" class="email required" name="email" title="* Please enter your email address" /><span>*</span>
</div>
<div class="form-cell">
<label class="display-ie8" >Subject:</label>
<input type="text" placeholder="Subject" class="subject" name="subject" />
</div>
<div class="form-row">
<label class="display-ie8" >Message:</label>
<textarea name="message" class="message required" cols="30" rows="10" placeholder="Message" title="* Please enter your message"></textarea>
<div class="captcha-container">
<label>Are you human?</label>
<img src="captcha/contact_captcha.php" alt="captcha"/>
<input type="text" class="captcha required" name="captcha" maxlength="5" title="* Please enter the code characters displayed in image!"/>
</div>
<input type="submit" name="submit" value="Submit" class="submit readmore"/>
<input type="hidden" name="action" value="send_message" />
<input type="hidden" name="target" value="[email protected]" />
<img src="images/loading.gif" id="contact-loader" alt="Loader" />
<p id="message-sent"> </p>
</div>
<div class="error-container">
</div>
</form>
</div>
</div>
</div><!-- end of container -->
<div id="footer-wrap">
</div><!-- footer-wrap -->
</div><!-- End of Wrapper Div -->
<script src="js/prettyPhoto/js/jquery.prettyPhoto.js"></script>
<script src="js/jquery.validate.min.js"></script>
<script src="js/jquery.form.js"></script>
<script src="js/jquery.ui.core.min.js"></script>
<script src="js/jquery.ui.datepicker.min.js"></script>
<script src="js/jquery.cycle.lite.js"></script>
<script src="js/jquery.easing.1.3.js"></script>
<script src="js/jquery-twitterFetcher.js"></script>
<script src="js/flexslider/jquery.flexslider-min.js"></script>
<script src="js/jquery.isotope.min.js"></script>
<script src="js/custom.js"></script>
<a href="#top" id="scroll-top"></a>
</body>
</html>