-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEjercicio10.html
28 lines (28 loc) · 1.02 KB
/
Ejercicio10.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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name ="author" content ="UO270157" >
<meta name ="description" content ="Ejercicio10" >
<meta name ="keywords" content ="" >
<meta name ="viewport" content ="width=device-width, initial-scale=1.0" >
<title>Ejercicio10</title>
<link rel="stylesheet" href="Ejercicio10.css"/>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<script src="Ejercicio10.js"></script>
</head>
<body>
<section>
<h1>Ejercicio 10</h1>
<script>
var ejercicio = new Ejercicio10();
ejercicio.getDatos();
</script>
<label for="countries">Seleccione un pais:</label>
<select id="countries" onchange="ejercicio.getPrecio(this)">
</select>
<label for="price">Precio gasolina(€/1000L):</label>
<input type="text" id="price" onchange="ejercicio.getPrecio(this)" disabled>
</section>
</body>
</html>