-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
36 lines (26 loc) · 1.26 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
<!DOCTYPE html>
<html lang="pt-BR" ng-app="cupomApp">
<head>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Gestão de Cupons</title>
<script src="https://cdn.jsdelivr.net/npm/chart.js"></script>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap"
rel="stylesheet">
</head>
<body class="d-flex flex-column p-2 gap-2 " style="font-family: 'Inter', sans-serif;">
<h1 class="text-dark text-center p-4">Gestor de Cupons</h1>
<tutorial></tutorial>
<cadastro-cupons></cadastro-cupons>
<canvas id="cuponChart"></canvas>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.8.2/angular.min.js"></script>
<script src="app.js"></script>
<script src="controllers/tutorial.controller.js"></script>
<script src="components/tutorial.component.js"></script>
<script src="controllers/cadastro-cupons.controller.js"></script>
<script src="components/cadastro-cupons.component.js"></script>
</body>
</html>