-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
34 lines (30 loc) · 1.07 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
<!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">
Oi, esse é um conversor de moedas!<br>
Aqui você pode fazer a conversão de euro para real.
</h1>
<h6 class="page-subtitle"><em>Ei, a cotação é do dia 15 de setembro de 2021, okay?
<br>
(1€ = R$6,20)</em></h6>
<br>
<label for="moeda">Insira o valor em euros</label><br>
<input type="number" id="valor" size="2" /><br>
<button type="submit" onclick="Converter()">Converter</button>
<h2 id="valorConvertido"></h2>
</div>
<a href="https://talitape-r.github.io/intro-html/" target="_blank">
<img src="https://raw.githubusercontent.com/talitape-r/intro-html/main/photo_2021-09-09_21-55-05.jpg" alt="" class="sticker-me">
<!--no html, editei o título, removi as logos da Alura e adicionei um subtitulo de aviso.-->
<!-- partial -->
<script src="./script.js"></script>
</body>
</html>