-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
45 lines (42 loc) · 1.3 KB
/
Copy pathindex.html
File metadata and controls
45 lines (42 loc) · 1.3 KB
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
<!doctype html>
<html lang="pt-br">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./style.css">
<title>Conversor de Moeda</title>
</head>
<body>
<main>
<form>
<h1>Conversor de Moedas</h1>
<div class="caixa-valor">
<label for="valor">Insira o valor:</label>
<input type="number" id="valor">
</div>
<div class="caixa-moedas">
<div class="moeda">
<label for="de">De</label>
<select id="de">
<option value="brl">BRL</option>
<option value="usd">USD</option>
<option value="eur">EUR</option>
</select>
</div>
<button type="button"><img src="./assets/arrow.png"></button>
<div class="moeda">
<label for="para">Para</label>
<select id="para">
<option value="brl">BRL</option>
<option value="usd">USD</option>
<option value="eur">EUR</option>
</select>
</div>
</div>
<span id="resultado"></span>
<button type="button" id="conversor">Converter</button>
</form>
</main>
<script src="./script.js"></script>
</body>
</html>