-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
50 lines (44 loc) · 2.47 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
38
39
40
41
42
43
44
45
46
47
48
49
50
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0,user-scalable=0" />
<link rel="resource" type="application/l10n" href="locales/locales.ini" />
<title></title>
<!-- CSS -->
<link rel="stylesheet" href="css/jquery.mobile-1.4.4.min.css" />
</head>
<body>
<div data-role="page" id="menu">
<div data-role="header" data-position="fixed" id="header" data-theme="b">
<h3>ConverTemp</h3>
<a href="about.html" data-icon="info" class="ui-btn-right" data-l10n-id="about">About</a>
</div>
<div data-role="content">
<!-- Formulario -->
<form name="formGrados">
<p data-l10n-id="ingrese-los-grados">Ingrese los grados:</p>
<input type="number" id="grados"/>
<!-- Radio Buttons -->
<fieldset data-role="controlgroup">
<legend data-l10n-id="seleccione-la-unidad">Seleccione la unidad:</legend>
<input type="radio" name="radio-choice" id="radio-choice-1" data-theme="b" value="celsius" checked="checked" />
<label for="radio-choice-1" data-l10n-id="celsius">Celsius</label>
<input type="radio" name="radio-choice" id="radio-choice-2" data-theme="b" value="farenheith" />
<label for="radio-choice-2" data-l10n-id="farenheith">Farenheith</label>
<input type="radio" name="radio-choice" id="radio-choice-3" data-theme="b" value="kelvin" />
<label for="radio-choice-3" data-l10n-id="kelvin">Kelvin</label>
</fieldset>
<!-- Botones -->
<button type="button" data-icon="check" value="Convertir" id="Convertir" data-theme="b" data-l10n-id="convertir">Convertir</button>
<button type="reset" data-icon="delete" data-theme="b" value="Limpiar" id="limpiar" data-l10n-id="limpiar">Limpiar</button>
</form>
</div>
</div>
<!-- Scripts JS -->
<script src="js/jquery-1.11.1.min.js"></script>
<script src="js/jquery.mobile-1.4.4.min.js"></script>
<script defer src="js/l10n.js" charset="utf-8"></script>
<script type="text/javascript" src="js/calcular.js"></script>
</body>
</html>