-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
54 lines (36 loc) · 1.82 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
48
49
50
51
52
53
54
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./src/css/bootstrap.min.css">
<link rel="stylesheet" href="src/css/style.css">
<title>Checklists</title>
</head>
<body>
<h1 class="d-flex justify-content-center align-items-start text-success">CHECKLISTS</h1>
<div id="lista">
<div id="tarefas"></div>
<form action="index.html" class="d-flex justify-content-center align-items-start">
<input type="submit" value="Voltar" id="carregar-voltar" class="btn btn-lg">
</form>
<div class="btn-group">
<button class="btn btn-lg btn-outline-success d-flex justify-content-center align-items-start" id="carregar-maq"
type="button">Máquinas</button>
<button class="btn btn-lg btn-outline-success d-flex justify-content-center align-items-start" id="carregar-vpn"
type="button">VPN</button>
<button class="btn btn-lg btn-outline-success d-flex justify-content-center align-items-start" id="carregar-3"
type="button">Checklist 3</button>
<button class="btn btn-lg btn-outline-success d-flex justify-content-center align-items-start" id="carregar-4"
type="button">Checklist 4</button>
<button class="btn btn-lg btn-outline-success d-flex justify-content-center align-items-start" id="carregar-5"
type="button">Checklist 5</button>
</div>
</div>
<script src="src/js/main.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-u1OknCvxWvY5kfmNBILK2hRnQC3Pr17a+RTT6rIHI7NnikvbZlHgTPOOmMi466C8"
crossorigin="anonymous"></script>
</body>
</html>