forked from Laboratoria/DEV010-text-analyzer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
49 lines (46 loc) · 1.39 KB
/
index.html
File metadata and controls
49 lines (46 loc) · 1.39 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
44
45
46
47
48
49
<!DOCTYPE html>
<html>
<head>
<link href="style.css" rel="stylesheet" type="text/css" />
<title>Analizer</title>
</head>
<body>
<div id="container">
<main>
<header>
<h1>...Analiza los textos...</h1>
<h2>¡ingresa la informacion que deseas evaluar!</h2>
</header>
<section>
<ul class="ul-list">
<li class="ul-list" data-testid="word-count">Palabras</li>
<li class="ul-list" data-testid="character-count">Caracteres</li>
<li class="ul-list" data-testid="character-no-spaces-count">
Caracteres Sin Espacios
</li>
<li class="ul-list" data-testid="number-count">Números</li>
<li class="ul-list" data-testid="number-sum">Suma números</li>
<li class="ul-list" data-testid="word-length-average">
Longitud promedio palabra
</li>
</ul>
</section>
<section>
<textarea
name="user-input"
placeholder="Bienvenido a este espacio del saber!"
></textarea>
</section>
<section>
<button id="reset-button">Limpiar</button>
</section>
</main>
<footer>
<p>
<center>Laura Beltrán</center>
</p>
</footer>
<script src="index.js" type="module"></script>
</div>
</body>
</html>