-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
77 lines (65 loc) · 1.9 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<title>Dona Doce</title>
<link rel="icon" href="favicon.ico" type="image/x-icon">
<link rel="stylesheet" type="text/css" href="css/reset.css">
<link rel="stylesheet" type="text/css" href="css/index.css">
</head>
<body>
<header>
<div class="container">
<h1 class = "titulo">Dona Doce</h1>
</div>
</header>
<main>
<section class="container">
<h2>Produtos</h2>
<table>
<thead>
<tr>
<th>Nome</th>
<th>Quantidade</th>
<th>Tamanho</th>
<th>Preco</th>
</tr>
</thead>
<tbody id="tabela-produtos">
<tr class="produto" id="primeiro-doce" >
<td class="info-nome">Brigadeiro tradicional</td>
<td class="info-quantidade">0</td>
<td class="info-tamanho">médio</td>
<td class="info-preco"> R$ 2.00</td>
</tr>
<tr class="produto" id="Bolo1">
<td class="info-nome">Bolo Banana</td>
<td class="info-quantidade">1</td>
<td class="info-tamanho">pequeno</td>
<td class="info-preco"> R$ 15.00</td>
</tr>
<tr class="produto" id="Bolo2">
<td class="info-nome">Bolo</td>
<td class="info-quantidade">1</td>
<td class="info-tamanho">Médio</td>
<td class="info-preco"> R$ 20.00</td>
</tr>
<tr class="produto" id="Bolo3" >
<td class="info-nome">Bolo</td>
<td class="info-quantidade">1</td>
<td class="info-tamanho">Grande</td>
<td class="info-preco"> R$ 25.00</td>
</tr>
<tr class="produto" >
<td class="info-nome">Ovo da páscoa</td>
<td class="info-quantidade">1</td>
<td class="info-tamanho">pequeno</td>
<td class="info-preco"> R$ 6.00</td>
</tr>
</tbody>
</table>
</section>
</main>
<script src="js/principal.js"></script>
</body>
</html>