-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
43 lines (41 loc) · 1.24 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CRUD em JavaScript</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="container">
<h1>CRUD em JavaScript</h1>
<form id="form">
<input type="hidden" id="index" value="">
<div>
<label for="name">Nome:</label>
<input type="text" id="name" placeholder="Digite o nome" required>
</div>
<div>
<label for="email">Email:</label>
<input type="email" id="email" placeholder="Digite o email" required>
</div>
<button type="submit">Salvar</button>
</form>
<table id="dataTable">
<thead>
<tr>
<th>Nome</th>
<th>Email</th>
<th>Ações</th>
</tr>
</thead>
<tbody></tbody>
</table><br>
<!-- Logo marca -->
<div class="logo">
<img style=" width:75px;" src="logo1.jpg">
</div>
</div>
<script src="script.js"></script>
</body>
</html>