-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
57 lines (51 loc) · 2.15 KB
/
Copy pathindex.html
File metadata and controls
57 lines (51 loc) · 2.15 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
50
51
52
53
54
55
56
57
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Word Counter</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<div class="textarea-container">
<textarea class="textarea" id="input" placeholder="Enter your text here...."></textarea>
</div>
<div class="count-container">
<div class="character-container">
<h1 id="characters-count">0</h1>
<div class="tooltip-container">
<h1 class="tooltip">Characters</h1>
<img src="./assets/info.png" alt="" class="info-icon">
</div>
<span class="tooltip-text">"Single alphabet is a character."</span>
</div>
<div class="word-container">
<h1 id="words-count">0</h1>
<div class="tooltip-container">
<h1 class="tooltip">Words</h1>
<img src="./assets/info.png" alt="" class="info-icon">
</div>
<span class="tooltip-text">"Group of characters ending with a space creates a word."</span>
</div>
<div class="sentences-container">
<h1 id="sentences-count">0</h1>
<div class="tooltip-container">
<h1 class="tooltip">Sentences</h1>
<img src="./assets/info.png" alt="" class="info-icon">
</div>
<span class="tooltip-text">"Statement ending with <b>.!?</b> creates a sentence."</span>
</div>
<div class="paragraphs-container">
<h1 id="paragraphs-count">0</h1>
<div class="tooltip-container">
<h1 class="tooltip">Paragraphs</h1>
<img src="./assets/info.png" alt="" class="info-icon">
</div>
<span class="tooltip-text">"Pressing the enter button twice creates a paragraph."</span>
</div>
</div>
</div>
<script src="script.js"></script>
</body>
</html>