-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcocacola.html
30 lines (26 loc) · 1.2 KB
/
cocacola.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
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Tudo De Bom Bebidas Paulo</title>
<link rel="stylesheet" href="produto.css">
</head>
<body>
<nav id="menu">
<input type="search" name="busca" id="busca" placeholder="buscar" class="buscar">
</nav>
<main id="conteudo">
<article class="produto">
<img width="250" src="./img/ofertas-imperdiveis-paodeacucar-1.jpg" class="figura">
<div class="descricao">
<h2>Refrigerante Coca Cola Pet 2 Litros</h2>
<p>Coca-Cola sabor original contém água gaseificada, açúcar, extrato de noz de cola, cafeína, corante caramelo IV, acidulante ácido fosfórico e aroma natural. Cada 200ml contém 85kcal e 10mg de sódio.</p>
<p>Preço: R$ 10,00</p>
</div>
</article>
<button type="button" onclick="window.location.replace('./pagamento.html')">Comprar</button>
</main>
</body>
</html>