-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
37 lines (37 loc) · 1.8 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
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="utf-8">
<title>Compteur de mots</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<p><label for="champ-texte">Votre texte :</label></p>
<textarea id="champ-texte" rows="20" cols="80"></textarea>
<h1>Premiers calculs</h1>
<dl><dt>Nombre de mots :</dt><dd id="words"> </dd>
<dt>Nombre de caractères (tous compris):</dt><dd id="characters"> </dd>
<dt>Nombre de lettres & chiffres :</dt><dd id="letters-and-numbers"> </dd>
<dt>Nombre de phrases :</dt><dd id="sentences"> </dd>
</dl>
<h1>Mesures du temps</h1>
<dl><dt>Temps de lecture :</dt><dd id="reading-time"> </dd>
<dt>Temps d'écriture manuscrite :</dt><dd id="handwriting-time"> </dd>
<dt>Temps d'élocution :</dt><dd id="speaking-time"> </dd>
</dl>
<h1>Mesure de la densité et de la complexité</h1>
<dl><dt>Indice général de complexité formelle :</dt><dd id="complexity"> </dd>
<dt>Nombre de mots peu communs :</dt><dd id="number-uncommon-words"> </dd>
<dt>Pourcentage de mots peu communs :</dt><dd id="percentage-uncommon-words"> </dd>
<dt>Nombre de mots importants :</dt><dd id="number-important-words"> </dd>
<dt>Pourcentage de mots importants :</dt><dd id="percentage-important-words"> </dd>
<dt>% de mots importants > 4 lettres :</dt><dd id="percentage-important-words-not-short"> </dd>
<dt>Nombre de mots longs :</dt><dd id="number-long-words"> </dd>
<dt>Pourcentage de mots longs :</dt><dd id="percentage-long-words"> </dd>
<dt>Nombre de mots longs différents :</dt><dd id="number-different-long-words"> </dd>
<dt>Longueur moyenne des mots :</dt><dd id="average-word-length"> </dd>
<dt>Longueur moyenne des phrases :</dt><dd id="average-sentence-length"> </dd>
</dl>
<script src="script.js"></script>
</body>
</html>