-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinfo.html
56 lines (52 loc) · 1.09 KB
/
info.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" />
<title>Text Info</title>
<!-- style.css -->
<link rel="stylesheet" href="css/style.css" />
</head>
<body>
<div class="info-wrapper"></div>
<script src="js/textInfo.js"></script>
<script>
window.onload = () => {
showData();
};
</script>
</body>
</html>
<!--
<div class="box">
<h2>100</h2>
<p>new lines</p>
</div>
<div class="box">
<h2>200</h2>
<p>words</p>
</div>
<div class="box">
<h2>300</h2>
<p>uppercaes</p>
</div>
<div class="box">
<h2>400</h2>
<p>lowercase</p>
</div>
<div class="box">
<h2>500</h2>
<p>spaces</p>
</div>
<div class="box">
<h2>600</h2>
<p>digits</p>
</div>
<div class="box">
<h2>700</h2>
<p>vowels</p>
</div>
<div class="box">
<h2>80</h2>
<p>consonants</p>
</div> -->