-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathprototype.html
More file actions
32 lines (30 loc) · 964 Bytes
/
Copy pathprototype.html
File metadata and controls
32 lines (30 loc) · 964 Bytes
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
<!doctype html>
<html>
<head>
<meta charset="utf-8"></meta>
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico">
<link rel="stylesheet" type="text/css" href="styles/main.css">
<title>Text Analyzer (English only)</title>
</head>
<body>
<div id="root" class="page">
<header></header>
<main>
<div class="user-input">
<textarea type="text" placeholder="Enter your text here"></textarea>
</div>
<div class="dashboard">
<div class="stats">
<div style="width: 100%; height: 50px;" id="letters"></div>
</div>
<div class="stats">
<div class="chart" id="sentences"></div>
<div class="chart" id="words"></div>
</div>
</div>
</main>
<footer></footer>
</div>
<script type="text/javascript" src="dist/index.proto.js"></script>
</body>
</html>