-
Notifications
You must be signed in to change notification settings - Fork 0
/
Ejercicio4.html
41 lines (38 loc) · 1.78 KB
/
Ejercicio4.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
<!DOCTYPE html>
<html lang="es"><head>
<meta charset="UTF-8">
<title>Ejercicio_4</title>
<meta name="author" content="Daniel Ferreira Gómez">
<meta name="description" content="Ejercicio_4">
<meta name="keywords" content="php, servicios web, metals api, cotizacion del cobre">
<meta name="viewport" content="width=device-width, initial scale=1.0">
<link rel="stylesheet" type="text/css" href="Ejercicio4.css">
</head>
<body>
<h1>Cotización del cobre</h1>
<main>
<table><caption>Cotización del cobre</caption>
<tbody><tr>
<th id="precio" scope="col">Precio</th>
<th id="euros" scope="col">Euros</th>
<th id="dolares" scope="col">Dólares</th>
</tr>
<tr>
<th id="por onza de troy" scope="row">Por onza de Troy</th>
<td headers="por onza de troy euros">0.2381765400045 €</td>
<td headers="por onza de troy dolares">0.26766521695661 $</td>
</tr>
<tr>
<th id="por kilos" scope="row">Por kilos</th>
<td headers="por kilos euros">7.6575424847226 €</td>
<td headers="por kilos dolares">8.6056240908067 $</td>
</tr>
</tbody></table><form action="#" method="post">
<label for="cobre">Ver precio cobre</label>
<input id="cobre" type="submit" name="cobre" value="Ver cotización del cobre"></form>
<footer>
<p>Daniel Ferreira Gómez - UO277603</p>
<p>Universidad de Oviedo - Software y Estándares para la Web</p>
<img src="uniovi.png" alt="Uniovi">
</footer> </main>
</body></html>