forked from Laboratoria/DEV011-text-analyzer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
43 lines (39 loc) · 1.13 KB
/
index.html
File metadata and controls
43 lines (39 loc) · 1.13 KB
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Analizador de texto</title>
<link rel="stylesheet" href="style.css" />
<script src="index.js" type="module"></script>
</head>
<header>
<h1>Analizador de texto</h1>
</header>
<body background="Brick-pattern-19.png">
<ul>
<li data-testid="word-count" class="box">
Recuento de palabras
</li>
<li data-testid="character-count" class="box">
Recuento de caracteres
</li>
<li data-testid="character-no-spaces-count" class="box">
Recuento de caracteres excluyendo espacios y signos de puntuación
</li>
<li data-testid="number-count" class="box">
Recuento de números
</li>
<li data-testid="number-sum" class="box">
Suma total de números
</li>
<li data-testid="word-length-average" class="box">
Longitud media de palabras
</li>
</ul>
<textarea name="user-input" placeholder="Ingresar texto"></textarea>
<button id="reset-button">Limpiar</button>
</body>
<footer>
<p>Developed by Paulina González</p>
</footer>
</html>