-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
44 lines (37 loc) · 1.61 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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="utf-8">
<meta name="viewport" content="initial-scale=1, width=device-width, viewport-fit=cover">
<meta name="color-scheme" content="light dark">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!--CSS necessário-->
<link rel="stylesheet" href="styles/bootstrap/css/bootstrap.css">
<title>Crud MySQL</title>
</head>
<body>
<!--Conteúdo da página-->
<div class="container-fluid bg-dark text-white vh-100 pt-5 text-center">
<!--Logo-->
<div class="mb-5 mt-5">
<div class="row justify-content-center">
<div class="col-md-10 col-xl-5"><img src="./img/logo-dark-2.png" alt="Logo Robot Solutions"></div>
</div>
<div class="row justify-content-center">
<div class="col-md-10 col-xl-5"><p class="fs-1">Robot Solutions</p></div>
</div>
</div>
<!--Menu de opções-->
<div class="row justify-content-center">
<div class="col-md-10 col-xl-5 btn-group">
<a href="./cadastrar.html" class="btn btn-outline-info p-3 py-5 fs-3">Cadastrar</a>
<a href="./consultar.php" class="btn btn-outline-info p-3 py-5 fs-3">Consultar</a>
</div>
</div>
</div>
<!--Script base para o Bootstrap-->
<script src="./js/bootstrap/js/bootstrap.js"></script>
<!--Script base para este arquivo-->
<script src="./js/"></script>
</body>
</html>