forked from sergiolopes/shopping
-
Notifications
You must be signed in to change notification settings - Fork 0
/
loja-pizza-hut.html
88 lines (71 loc) · 2.82 KB
/
loja-pizza-hut.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
<!doctype html>
<html lang="pt-br" Xmanifest="appcache.manifest">
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<title>Pizza Hut</title>
<meta name="description" content="WebApp de exemplo">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/main.css">
<link rel="manifest" href="manifest.json">
<!-- Add to homescreen for Chrome on Android -->
<meta name="mobile-web-app-capable" content="yes">
<link rel="icon" sizes="192x192" href="img/icon.png">
<meta name="theme-color" content="#F77F00">
<!-- Add to homescreen for Safari on iOS -->
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-title" content="Shopping">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<link rel="apple-touch-icon-precomposed" href="img/icon.png">
<!-- Tile icon for Win8 (144x144 + tile color) -->
<meta name="msapplication-TileImage" content="img/icon.png">
<meta name="msapplication-TileColor" content="#F77F00">
<script>
if (window.location.protocol != "https:" && window.location.hostname == "sergiolopes.github.io")
window.location.href = "https:" + window.location.href.substring(window.location.protocol.length);
</script>
</head>
<body>
<div class="current-page">
<main class="loja">
<div class="parallax-container">
<a href="lojas.html">
<i class="material-icons waves-effect waves-light waves-circle">arrow_back</i>
</a>
<div class="parallax">
<img src="img/loja/pizza-hut.jpg" alt="Pizza Hut">
</div>
</div>
<div class="section white">
<div class="row container">
<h2 class="header">Pizza Hut</h2>
<p class="grey-text text-darken-3 lighten-3">A típica pizza americanizada cheio de peperoni e que não lembra em nada a pizza normal italiana.</p>
</div>
</div>
<div class="section amber lighten-5">
<div class="row container">
<p>Piso: <strong>3</strong></p>
<p>Número: <strong>316</strong></p>
<p>Funcionamento: <strong>10h - 22h</strong></p>
<p>Telefone: <strong>011-1406</strong></p>
<p>Email: <strong>[email protected]</strong></p>
</div>
</div>
<div class="fixed-action-btn">
<a class="btn-floating btn-large waves-effect waves-light amber darken-4"
href="tel:0111406">
<i class="material-icons">call</i>
</a>
</div>
</main>
</div><!--/.current-page-->
<script src="js/vendor/jquery.min.js"></script>
<script src="js/vendor/materialize-0.97.0.min.js"></script>
<script src="js/spa.js"></script>
<script src="js/main.js"></script>
<script src="js/install.js"></script>
<script src="js/pagamento.js"></script>
<script src="js/vendor/quagga.min.js"></script>
<script src="js/barcode.js"></script>
</body>
</html>