forked from Laboratoria/SAP012-text-analyzer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
41 lines (35 loc) · 1.21 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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="style.css" />
<meta charset="utf-8" />
<title>Analizador de texto</title>
<link rel="icon" type="image/x-icon" href="assets/favicon.ico">
<style>
body {
background-image: url("assets/Beige\ Watercolor\ Retro\ Books\ Writer\ Page\ Border.png");
}
</style>
</head>
<header>
<h1>Analisador de texto</h1>
</header>
<body>
<script src="index.js" type="module"></script>
<ul>
<li class="metricas" data-testid="word-count">Contagem de palavras: </li>
<li class="metricas" data-testid="character-count">Contagem de caracteres: </li>
<li class="metricas" data-testid="character-no-spaces-count">Caracteres sem espaços e sinais de pontuação: </li>
<li class="metricas" data-testid="number-count">Contagem de números: </li>
<li class="metricas" data-testid="number-sum">Soma total de números: </li>
<li class="metricas" data-testid="word-length-average">Comprimento das palavras: </li>
</ul>
<textarea name="user-input"></textarea>
<div>
<button id="reset-button">Resetar analisador</button>
</div>
<footer>
<p><i>Desenvolvido por: Jessica Ramos</i></p>
</footer>
</body>
</html>