forked from Laboratoria/DEV015-text-analyzer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
31 lines (28 loc) · 1.2 KB
/
index.html
File metadata and controls
31 lines (28 loc) · 1.2 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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Analizador de texto</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<header>
<h1>ANALIZADOR DE TEXTO</h1>
</header>
<ul>
<li class="contadores" data-testid="word-count">Recuento de palabras:</li>
<li class="contadores" data-testid="character-count">Recuento de caracteres:</li>
<li class="contadores" data-testid="character-no-spaces-count">Recuento de caracteres excluyendo espacios y signos de puntuación:</li>
<li class="contadores" data-testid="number-count">Recuento de números:</li>
<li class="contadores" data-testid="number-sum">Total de números:</li>
<li class="contadores" data-testid="word-length-average">Longitud media de palabras:</li> <!-- Corrección del atributo data-testid -->
</ul>
<textarea name="user-input" value= "user-input" placeholder="ESCRIBA SU TEXTO ANALIZAR AQUI"></textarea>
<button id="reset-button">Borrar</button>
<footer>
<p>DYNAH GOMEZ</p>
</footer>
<script src="index.js" type="module"></script>
</body>
</html>