forked from meibenny/countletters
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
44 lines (37 loc) · 1.33 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="initial-scale=1">
<title>Letter Count</title>
<link rel="stylesheet" type = "text/css" href="stylesheet.css">
<link href='https://fonts.googleapis.com/css?family=Montserrat' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Roboto' rel='stylesheet' type='text/css'>
<script src="scripts.js"></script>
</head>
<body>
<div id="title">
<h1>Letter Count</h1>
</div>
<main>
<div id="readme">
<p>Enter text into the box below and click submit to count the multiplicity of each character.</p>
</div>
<div id="form">
<form>
<input type="text" name="data" id="inputbox" placeholder="Enter text here">
<input type="checkbox" title="Use capitals" name="caps" id="caps-checkbox" value="1">
<label for="caps-checkbox" title="Use captials"><div id="box"></div>Aa</label>
<input type="submit" id="submit-button" value="Submit">
</form>
</div>
<div id="results">
<script>countLetters()</script>
</div>
</main>
<footer>
<a href="https://github.com/nsprenkle/countletters" target="_blank">Source</a>
<a href="https://github.com/nsprenkle/countletters/commits/gh-pages" target="_blank">Changelog</a>
</footer>
</body>
</html>