-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
66 lines (61 loc) · 2.97 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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Remessa Conforme Transparente</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header></header>
<main>
<h1>Remessa Conforme Transparente</h1>
<div class="label">
<label for="valor_sem_impostos">Preço do Produto Sem Impostos:</label>
</div>
<div class="valor">
<label for="valor_sem_impostos">R$</label>
<input type="number" id="valor_sem_impostos" min="0" step="0.01" oninput="(validity.valid || (value='')) && calcula_valor_com_impostos()">
</div>
<div class="label">
<label for="valor_com_impostos">Preço do Produto Com Impostos:</label>
</div>
<div class="valor">
<label for="valor_com_impostos">R$</label>
<input type="number" id="valor_com_impostos" min="0" step="0.01" oninput="(validity.valid || (value='')) && calcula_valor_sem_impostos()">
</div>
<div class="label">
<label for="imposto">Valor do Imposto de Importação:</label>
</div>
<div class="valor">
<label for="imposto">R$</label>
<input type="number" id="imposto" min="0" step="0.01" disabled>
</div>
<div class="label">
<label for="icms">Valor do ICMS:</label>
</div>
<div class="valor">
<label for="icms">R$</label>
<input type="number" id="icms" min="0" step="0.01" disabled>
</div>
<ul>
<li>A cotação do dólar: R$ <span id="dolar-hoje"></span></li>
<li>Produtos até 50 doláres são tributados em 17% de ICMS.</li>
<li>Produtos acima de 50 doláres são tributados em 60% de imposto de importação mais 17% de ICMS.</li>
</ul>
</main>
<footer>
<p><strong>Contatos do desenvolvedor</strong></p>
<a class="contato" href="https://www.facebook.com/jefersonba" target="_blank" rel="noopener noreferrer">
<img src="https://upload.wikimedia.org/wikipedia/commons/thumb/c/cd/Facebook_logo_%28square%29.png/240px-Facebook_logo_%28square%29.png" alt="Ícone do Facebook">
</a>
<a class="contato" href="https://www.instagram.com/jefersonbalmeida/" target="_blank" rel="noopener noreferrer">
<img src="https://upload.wikimedia.org/wikipedia/commons/thumb/a/a5/Instagram_icon.png/240px-Instagram_icon.png" alt="Ícone do Instagram">
</a>
<a class="contato" href="https://www.linkedin.com/in/jefersonbalmeida/" target="_blank" rel="noopener noreferrer">
<img src="https://upload.wikimedia.org/wikipedia/commons/thumb/c/ca/LinkedIn_logo_initials.png/240px-LinkedIn_logo_initials.png" alt="Ícone do LinkedIn">
</a>
</footer>
<script src="script.js"></script>
</body>
</html>