-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathalura-aula1.html
42 lines (33 loc) · 1.28 KB
/
alura-aula1.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
<!DOCTYPE html>
<html lang="PT">
<head>
<meta charset="UTF-8">
<title>Imersão Dev - Aula 1</title>
<link rel="stylesheet" href="alura-aula1.css">
</head>
<body>
<header>
<main>
<div class="bloco-principal">
<h1>Conversor de moedas</h1>
<P>Descubra os valores em Reais R$</p>
</div>
<div class= "imagens">
<a href="https://www.alura.com.br/">
<img class = "logo-principal" src="https://pbs.twimg.com/profile_images/1333609520849969161/hrA0M5ZG_400x400.jpg">
</a>
<img class= "logo-secundario" src="https://www.alura.com.br/assets/img/imersoes/dev-2021/logo-imersao-conversor-de-moedas.svg" width="150" height="40">
</div>
<div class="caixa">
<input type="text" placeholder="Quanto você quer converter?" name="conversor"/>
<button>Converter</button>
<span id="resultado"></span><!-- Da a resposta na tela do java -->
</div>
<div class="cotacao">
<label for="contacao">Cotação do Dólar 5,52 Real brasileiro</label>
</div>
</header>
</main>
<script src="alura-aula1.js"></script>
</body>
</html>