-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
58 lines (53 loc) · 2.04 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
57
58
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title> Criptomonedas tiempo real</title>
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/skeleton.css">
<link rel="stylesheet" href="css/app.css">
</head>
<body>
<div class="container">
<div class="row">
<div class="one-half column">
<img src="img/cryptomonedas.png">
</div>
<div class="one-half column">
<form id="formulario">
<div class="row">
<label>Elige tu Moneda FIAT</label>
<select
class="u-full-width"
id="moneda"
name="moneda"
>
<option value="">Elige tu moneda</option>
<option value="USD">Dolar</option>
<option value="MXN">Peso Mexicano</option>
<option value="GBP">Libras</option>
<option value="EUR">Euros</option>
</select>
</div>
<div class="row">
<div>
<label>Elige tu Criptomoneda</label>
<select
class="u-full-width"
id="criptomonedas"
name="criptomoneda"
>
<option value="">Elige tu criptomoneda</option>
</select>
</div>
</div>
<input class="button-primary u-full-width" type="submit" value="Ver cotización" />
<div id="resultado" class="resultado"></div>
</form>
</div>
</div>
</div>
<script src="js/app.js"></script>
</body>
</html>