-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path4.html
More file actions
44 lines (33 loc) · 1.32 KB
/
4.html
File metadata and controls
44 lines (33 loc) · 1.32 KB
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
<!DOCTYPE HTML>
<html lang='es'>
<head>
<meta charset='UTF-8' />
<meta name ='viewport' content ='width=device-width, initial scale=1.0' />
<title>Precios del petróleo con Commodities-API</title>
<link rel='stylesheet' type='text/css' href='Ejercicio4.css' />
</head>
<body>
<h1>Precios del petróleo</h1>
<form action='#' method='post'>
<input type='submit' name='obtenerPrecios' value='Obtener precios'>
</form>
<p>Estos datos toman como base la moneda 'USD'</p>
<p>
La tabla muestra la variación que se produce con respecto a las monedas 'EUR', 'JPY' y 'GBP' en el intervalo de días
entre el 21-11-2021 y el 26-11-2021
</p>
<table>
<caption>Precios por barril de petróleo</caption>
<tr><th>Campo</th><th>EUR</th><th>JPY</th><th>GBP</th></tr>
<tr><td>Tarifa inicial</td><td></td><td></td><td></td></tr>
<tr><td>Tarifa final</td><td></td><td></td><td></td></tr>
<tr><td>Variación de la tarifa</td><td></td><td></td><td></td></tr>
<tr><td>Variación %</td><td></td><td></td><td></td></tr>
</table>
<footer>
<p>A continuación se aporta el correo del autor del documento:
<a href='mailto:UO277346@uniovi.es'>Alejandro Galán</a>
</p>
</footer>
</body>
</html>