-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
64 lines (52 loc) · 2 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
<!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">
<link rel="stylesheet" href="style.css">
<title>Conversor de Moedas|DEVCLUB</title>
</head>
<body>
<div id="container-master">
<header>
<h1>Money Converter</h1>
</header>
<main id="main">
<label>
<p class="bottom-value">Convert <b>from</b></p>
<select id="currency-select-from">
<option>R$ Real Brasileiro</option>
</select>
</label>
<label>
<p class="bottom-value">Convert <b>to</b></p>
<select id="currency-select-to">
<option>US$ Dólar Americano</option>
<option>€ Euro</option>
<option>₿ Bitcoin</option>
</select>
</label>
<label>
<p class="bottom-value"><b>Value</b></p>
<input id="input-real" placeholder="R$ 10.000,00">
</label>
<button id="convert-button" type="button">Convert</button>
<section>
<div>
<img id="currency-img-from" src="assets/brasil 2.png" alt="moeda-real">
<p id="currency-name-from">Real</p>
<p class="currency-value-from" id="currency-value-text-from">R$ 0,00</p>
</div>
<img class="div-seta" src="assets/seta.png" alt="seta">
<div>
<img id="currency-img-to" src="assets/estados-unidos (1) 1.png" alt="moeda-dolar">
<p id="currency-name-to">Dollar</p>
<p class="currency-value-to" id="currency-value-text-to">US$ 0,00</p>
</div>
</section>
</main>
</div>
</body>
<script src="script.js"></script>
</html>