-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpagamento.html
22 lines (19 loc) · 950 Bytes
/
pagamento.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!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="pagamento.css">
</head>
<body>
<main id="conteudo">
<h2>Formas de Pagamento</h2>
<button style="margin-top: 10px;" type="button" onclick="alert('Você escolheu Boleto')">Boleto</button><br><br><br>
<button style="margin-top: 10px;" type="button" onclick="alert('Você escolheu Cartão')">Cartão</button><br><br><br>
<button style="margin-top: 10px;" type="button" onclick="alert('Você escolheu PIX')">PIX</button><br><br><br>
<button style="margin-top: 10px;" type="button" onclick="alert('Compra Realizada')">Finalizar Compra</button>
</main>
</body>
</html>