-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
32 lines (30 loc) · 1.1 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
<!DOCTYPE html><html lang="en">
<head>
<meta charset="utf-8"/>
<meta name='viewport' content='width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0' />
<meta name="author" content="Nikita Malinovsky"/>
<title>Nikita's Aggregator </title>
<link rel="stylesheet" type="text/css" href="/styles.css">
<link rel="shortcut icon" type="image/png" href="/favicon.png"/>
<script src="script.js" defer></script>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js" type="text/javascript"></script>
<script src="http://code.highcharts.com/highcharts.js" defer></script>
</head>
<body>
<div class="container"></div>
<h1 >Speed Typing Simulator</h1>
<div class="gameContainer">
<div class = "timer" id="timer">Time Left: 60</div>
<div class="WPM" id="wpm">  WPM:   </div>
</div>
<div class="typingContainer">
<div class="quote-display" id="quoteDisplay"></div>
<textarea class="quote-input" id="quoteInput" autofocus></textarea>
<button id="btn">Start</button>
</div>
<br>
<br>
<div id="notContainer"></div>
</div>
</body>
</html>