forked from nicolaszamboni/Casa-de-Cambio---Trybe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
26 lines (26 loc) · 871 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Casa de Câmbio</title>
</head>
<body>
<h1>Casa de <span>Câmbio</span></h1>
<p>Digite a moeda:</p>
<div class="input-container">
<input type="text" name="moeda" id="input-moeda" placeholder="USD">
<button id="btn-pesquisar">Pesquisar</button>
</div>
<div class="moedas-container">
<span id="titulo"></span>
</div>
<div class="cambio-container" style="display: none;">
<img src="./public/coins.png" alt="moeda">
<span class="nome-moeda">USD</span>
<span class="valor-moeda">3.251</span>
</div>
<footer>Herbert, Linda, Vitor e Nicolas - Turma 28 - Trybe</footer>
<script type="module" src="./src/main.js"></script>
</body>
</html>