-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
40 lines (33 loc) · 1.35 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">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Conversor de moedas - Imersão Alura - Aula 2</title>
<link rel="stylesheet" href="_Css/style.css">
<script src="_script/script.js"></script>
</head>
<body>
<div class="container">
<h1 class="page-title">
Conversor de moedas
</h1>
<p class="page-subtitle">
Descubra os valores em real (R$)
</p>
<img src="https://www.alura.com.br/assets/img/imersoes/dev-2021/logo-imersao-conversor-de-moedas.svg"
class="page-logo" alt=""><br><br>
<label for="moeda">Converta do dolar pro real</label><br>
<input type="number" id="valor" size="2" /><br>
<button type="submit" onclick="converter()">Converter</button>
<h2 id="valorConvertido"></h2><br>
<label for="moeda">Converta da libra pro real</label><br>
<input type="number" id="valor2" size="2"/><br>
<button type="submit" onclick="converter2()">Converter</button>
<h2 id="valorConvertido2"></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">
</body>
</html>