-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontato.php
109 lines (94 loc) · 3.94 KB
/
contato.php
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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<!-- Global Site Tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-107598133-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-107598133-1');
</script>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="Kusuki Refeições - Faça seu pedido 11 5589-6073">
<meta name="author" content="Fabio Kusuki">
<title>Refeições Kusuki - 11 5589-6073</title>
<!-- Bootstrap core CSS -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<!-- Custom styles for this template -->
<link href="https://fonts.googleapis.com/css?family=Francois+One|Roboto" rel="stylesheet">
<link href="css/custom.css" rel="stylesheet">
<link href="css/footer.css" rel="stylesheet">
<link href="css/map.css" rel="stylesheet">
<!-- Just for debugging purposes. Don't actually copy these 2 lines! -->
<!--[if lt IE 9]><script src="assets/js/ie8-responsive-file-warning.js"></script><![endif]-->
<script src="assets/js/ie-emulation-modes-warning.js"></script>
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<!-- NAVBAR
================================================== -->
<?php include("header.html"); ?>
<!-- Begin page content -->
<div class="container">
<div class="page-header">
<h1>CONTATO</h1>
</div>
<address>
<h2>Refeições Kusuki</h2>
Rua Bertioga, 305, Praça da Árvore<br>
São Paulo, SP 0000-000<br>
<abbr title="Phone">Tel:</abbr> (11) 5584-9215 e (11) 5589-6073<br>
<a href="mailto:[email protected]">[email protected]</a>
</address>
<h2>Onde Estamos</h2>
<div class="row">
<div class="col-xs-12 col-md-12 col-lg-12">
<div id="map"></div>
</div>
</div>
</div><!-- /content -->
<!-- FOOTER
================================================== -->
<?php include("footer.html"); ?>
<!-- Bootstrap core JavaScript
================================================== -->
<!-- Placed at the end of the document so the pages load faster -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="assets/js/docs.min.js"></script>
<script src="js/navActive.js"></script>
<!-- IE10 viewport hack for Surface/desktop Windows 8 bug -->
<script src="assets/js/ie10-viewport-bug-workaround.js"></script>
<script src="https://maps.googleapis.com/maps/api/js"></script>
<script>
function initialize() {
var rotKusuki = {lat: -23.6109472, lng: -46.634339817};
var mapCanvas = document.getElementById('map');
var mapOptions = {
center: new google.maps.LatLng(-23.6109472,-46.6343398,17),
zoom: 16,
mapTypeId: google.maps.MapTypeId.ROADMAP
};
var map = new google.maps.Map(mapCanvas, mapOptions);
var contentString = "<strong>Kusuki</strong>";
var infowindow = new google.maps.InfoWindow({
content: contentString
});
var marker = new google.maps.Marker({
position: rotKusuki,
map: map,
title: 'Refeições Kusuki (Localização)'
});
infowindow.open(map, marker);
}
google.maps.event.addDomListener(window, 'load', initialize);
</script>
</body>
</html>