conversor.html 498 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
<!DOCTYPE html>
<html>
	<head>
		<meta charset="UTF-8">
		<title>Insert title here</title>
	</head>
	<body>
		<h1>Conversor</h1>
		<hr>
		<form action="/jweb-e001/conversor_temperatura" method="post">
			
			Tipo de temperatura: <select name="tipo_temperatura">
									<option value="c">C</option>
									<option value="f">F</option>
									<option value="k">K</option>			
								</select>
			
			Valor: <input type="text" name="valor">
			<input type="submit">
		
		</form>
	</body>
</html>