-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
27 lines (22 loc) · 836 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./styles.css">
<title>WordLord</title>
</head>
<body>
<h1>Word<span id="colorer">Lord</span></h1>
<div class="word-counter">
<h4>Rocket science is here to help you figure out the words</h4>
<div class="editor">
<textarea name="editor" placeholder="Paste your text to find out how many words you have written so far" id="input-text" cols="30" rows="10"></textarea>
<div id="result"></div>
<button id="check">Check Words</button>
</div>
</div>
<script src="./index.js"></script>
</body>
</html>