-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathindex.html
48 lines (37 loc) · 1.22 KB
/
index.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
<!doctype html>
<html lang="pt-br" manifest="appcache.manifest">
<head>
<meta charset="utf-8">
<title>Shopping</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="stylesheet" href="css/estilos.css">
<link rel="manifest" href="manifest.json">
</head>
<body>
<div class="current-page">
<main class="home">
<h1 class="z-depth-1">O Shopping</h1>
<div class="collection z-depth-1">
<a href="lojas.html" class="collection-item waves-effect">
<i class="material-icons">card_giftcard</i>
Lojas & Restaurantes
</a>
<a href="pagar-estacionamento.html" class="collection-item waves-effect">
<i class="material-icons">directions_car</i>
Pagar estacionamento
</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>