-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
34 lines (32 loc) · 1.32 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
<!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>Lista de Compras</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<!--HTML-->
<header>
<h1>Lista de compras</h1>
</header>
<section id="inputs">
<input type="text" title="Insira o Nome do seu produto" placeholder="Nome do produto..." class="dados" id="produto">
<input type="number" title="Insira a Quantidade de produtos" placeholder="Qnt..." class="dados" id="quantidade" step="1" maxlength="2">
<input type="number" title="Insira o Custo do seu produto" placeholder="Custo..." class="dados" id="valor" step="0.1" maxlength="3">
<input type="number" title="Insira seu Saldo atual" placeholder="Saldo..." class="dados" id="saldo" step="0.1"> <br>
<input id="submit" type="submit" onmouseenter="SubmitIn()" onmouseleave="SubmitOut()" onclick="NovoItem()">
</section>
<section id="product_section" hidden>
<div id="product_div"></div>
<div class="total_price">
<h1 id="total_price">Total: ...</h1>
</div>
</section>
<!--/HTML-->
<script src="script.js">
</script>
</body>
</html>