-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
56 lines (52 loc) · 2.17 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Cotizador de criptomonedas</title>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="css/normalize.css" />
<link rel="stylesheet" href="css/styles.css" />
</head>
<body>
<div class="app app__container">
<section class="app__form-section">
<form id="form" class="form">
<div class="form__field">
<label for="currency" class="form__label">Elige tu moneda</label>
<select id="currency" name="currency" class="form__select">
<option value="" disabled selected>- Seleccionar -</option>
<option value="AUD">Dólar Australiano</option>
<option value="BRL">Real Brasileño</option>
<option value="CLP">Peso Chileno</option>
<option value="EUR">Euros</option>
<option value="GBP">Libras</option>
<option value="MXN">Peso Mexicano</option>
<option value="ARS">Peso Argentino</option>
<option value="USD">Dólar Estadounidense</option>
<option value="UYU">Peso Uruguayo</option>
</select>
</div>
<div class="form__field">
<label for="cryptocurrency" class="form__label">Elige tu criptomoneda</label>
<select id="cryptocurrency" name="cryptocurrency" class="form__select">
<option value="" disabled selected>- Seleccionar -</option>
</select>
</div>
<div class="form__button">
<button id="button-submit" type="submit" class="button">Cotizar</button>
</div>
</form>
</section>
<section class="app__data-section">
<div id="data-container" class="app__data-flex"></div>
</section>
</div>
<script type="module" src="js/app.js"></script>
</body>
</html>