-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
37 lines (33 loc) · 1.1 KB
/
index.html
File metadata and controls
37 lines (33 loc) · 1.1 KB
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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Meu Primeiro CRUD</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet">
</head>
<body>
<!-- Cabeçalho -->
<div class="container-fluid p-5 bg-primary text-white text-center">
<h1 id="titulo"></h1>
<p id="par1"></p>
</div>
<!-- Conteúdo -->
<div class="container mt-5">
<div class="row">
<div class="col-sm-6">
<h3>Adicionando item</h3>
<div class="input-group mb-3">
<input type="text" id="inputText" class="form-control" placeholder="Insira o texto">
<button type="button" class="btn btn-primary" id="createButton">Adicionar</button>
</div>
<h4>Dados Salvos</h4>
<ul id="dataList" class="list-group"></ul>
</div>
</div>
</div>
<!-- Scripts -->
<script src="Aula20/index.js"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js"></script>
</body>
</html>