-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDabel.html
122 lines (122 loc) · 5.02 KB
/
Dabel.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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
<html>
<head>
<link rel="stylesheet" href="styles\02-stylesheet.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Lato|Rubik">
</head>
<body>
<table>
<tr>
<th>
<header class="imgLogo">
<img src="images/AmigoUrso_topo.png" alt="The logo is a bear holding a honey pot">
</header>
</th>
<th>
<address class="ender">
<p>Rua Apis Mellifera, 1</p>
<p>Tel: (21) 91122-3344</p>
<p>contato@zangao.com.br</p>
</address>
</th>
</tr>
<tr>
<th>
<nav>
<ul>
<li><a href="AmigoUrso.html" target="blank">Apresentação</a></li>
<li><a href="Demel.html" target="blank">Mistura de Mel</a></li>
<li><a href="Dabel.html" target="blank">Direto da abelha</a></li>
<li><a href="Pedidos.html" target="blank">Pedidos</a></li>
</ul>
</nav>
</th>
<th>
<section>
<table class="tabDaBel">
<tr>
<th colspan="4" class="titulo">
Produtos Direto da Abelha
</th>
</tr>
<tr>
<th class="linTH">
Produto
</th>
<th class="linTH">
Descrição
</th>
<th class="linTH">
Foto
</th>
<th class="linTH">
Preço
</th>
</tr>
<tr>
<th class="colTH" rowspan="3">
Pote de Mel
</th>
<td>
Mel Flores Silvestres (350g)
</td>
<td>
<img class="imgDaBel" src="images\MelSilvestre100.jpg">
</td>
<td class="preco">
R$ 20,00
</td>
</tr>
<tr>
<td>
Mel de Eucalipto (450g)
</td>
<td>
<img class="imgDaBel" src="images\MelEucalipto100.jpg">
</td>
<td class="preco">
R$ 25,00
</td>
</tr>
<tr>
<td>
Mel Flor de Laranjeira (750g)
</td>
<td>
<img class="imgDaBel" src="images\MelLaranja100.jpg">
</td>
<td class="preco">
R$ 40,00
</td>
</tr>
<tr>
<th class="colTH" rowspan="0">
Própolis
</th>
<td>
Extrato (30ml)
</td>
<td>
<img class="imgDaBel" src="images\Propol100.jpg">
</td>
<td class="preco">
R$ 16,00
</td>
</tr>
<tr>
<td>
Spray
</td>
<td>
<img class="imgDaBel" src="images\Spray100.jpg">
</td>
<td class="preco">
R$ 9,00
</td>
</tr>
</table>
</section>
</th>
</tr>
</table>
</body>
</html>