-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
56 lines (41 loc) · 1.7 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<script src="script.js" defer></script>
<title>Word Analytics</title>
</head>
<body>
<div class="background"></div>
<h1 class="first-heading">
Word <span class="first-heading--special">Analytics</span>
</h1>
<div class="container">
<textarea class="textarea" spellcheck="false" placeholder="Enter your text"></textarea>
<section class="stats">
<section class="stat">
<span class="stat__number stat__number--words">0</span>
<h2 class="second-heading">Words</h2>
</section>
<section class="stat">
<span class="stat__number stat__number--characters">0</span>
<h2 class="second-heading">Characters</h2>
</section>
<section class="stat">
<span class="stat__number stat__number--twitter">280</span>
<h2 class="second-heading">Twitter</h2>
</section>
<section class="stat">
<span class="stat__number stat__number--facebook">2200</span>
<h2 class="second-heading">Facebook</h2>
</section>
</section>
</div>
<footer class="footer">
<small class="copyright">© Copyright by Yojxmbo. All rights reserved.</small>
<small class="data">Last checked limits: 17 days ago</small>
</footer>
</body>
</html>