-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
40 lines (35 loc) · 1.16 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
<!DOCTYPE html>
<html lang="en" >
<head>
<meta charset="UTF-8">
<title>CodePen - Conversor de moedas - ID3</title>
<link rel="stylesheet" href="./style.css">
</head>
<body>
<!-- partial:index.partial.html -->
<div class="container">
<h1 class="page-title">
Conversor de moedas
</h1>
<img src="https://fontmeme.com/permalink/220308/1701d54a8a320a0bd19a9600599cc66e.png" class="page-logo" alt=""><br><br>
<p class="page-subtitle">
Converta os valores em Reais R$
</p>
<label for="moeda">Insira o valor</label>
<input type="number" id="valor" size="2" /><br>
<button type="submit" onclick="Converter()">Converter</button>
<h2 id="valorConvertido"></h2>
<p class="page-subtitle">
Converta os valores em Euro €$
</p>
<label for="moeda">Insira o valor</label>
<input type="number" id="valorEuro" size="2" /><br>
<button type="submit" onclick="ConverterEuro()">Converter</button>
<h2 id="valorConvertidoEuro"></h2>
</div>
<a href="https://alura.com.br/" target="_blank">
<img src="https://www.alura.com.br/assets/img/home/alura-logo.svg" alt="" class="alura-logo">
<!-- partial -->
<script src="./script.js"></script>
</body>
</html>