conversor.html 687 Bytes
Newer Older
roshka committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Conversor de temperatura</title>
</head>
<body>
	<h1>Ingrese los datos</h1>
	<form action="conversor_temperatura" method="post">
		<label for="valor̲temperatura">Temperatura: </label>
		<input type="text" name="P1" id="valor̲temperatura"><br><br>
		<label for="tipo̲temperatura">Tipo de temperatura</label>
		<select name="P0" id="tipo̲temperatura">
			<option value="0">C</option>
			<option value="1">F</option>
			<option value="2">K</option>
		</select><br><br>
		<input type="submit" value="Calcular">
	</form><br><br>
	<a href="http://localhost:8080/_jweb-e001/index.html">Volver al menu principal</a>
</body>
</html>