-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
37 lines (34 loc) · 1.27 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
<!DOCTYPE html>
<html lang="en">
<head>
<link href="https://fonts.googleapis.com/css2?family=Raleway:ital,wght@1,100;1,400&display=swap" rel="stylesheet">
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Calculador de nafta</title>
<link rel="stylesheet" href="index.css" />
</head>
<body>
<div class="calculator" >
<form class="formo" onsubmit="getValueInput();return false">
<label for="km">Cuantos kilometros vas a recorrer? </label>
<input required type="number" min="0" id="km">
<label for="km">Cuanto rinde su auto? </label>
<input required type="number" min="0" id="cons">
<label>Que combustible va a usar?</label>
<select required id="nafta">
<option ></option>
<option value="65.81 ">Súper 95</option>
<option value="67.74">Premium 97</option>
<option value="67.87">Gasoil 10-S</option>
<option value="45.7">Gasoil 50-S</option>
</select>
<button type="submit" class="boton">
Calcular
</button>
<p id="valueInput"></p>
</form>
</div>
</body>
<script src="index.js"></script>
</html>