-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
49 lines (41 loc) · 1.57 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Numeros a texto</title>
<link href="https://fonts.googleapis.com/css2?family=Alegreya:wght@700&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="./css/styles.css">
</head>
<body>
<header>
<h1>Números a texto</h1>
</header>
<main>
<div class="number-div">
<h2>Ingrese un numero:</h2>
<hr>
<p>
El valor puede ser un numero positivo o negativo, decimal o entero.
<br>
No debe estar separado por comas.
<br>
Los enteros tienen un maximo de 30 digitos y los decimales tienen un limite de 12 digitos.
</p>
<input type="text" class="number-in" id="number-in" placeholder="Ej: 123456, 123.456, -123.456">
<p class="error" id="error"></p>
</div>
<button class="result-btn" id="result-btn">Ver resultado</button>
<div class="result hidden" id="result-div">
<h2>Resultado en texto:</h2>
<hr>
<h3 class="result-out" id='result-out'></h3>
</div>
</main>
<footer>
<p>Aplicacion desarrollada por <a href="https://github.com/WillyAntunez">Willy Antunez</a>.</p>
</footer>
<script src="./js/index.js" type="module"></script>
</body>
</html>