forked from sauber92/GraduationProject-TA
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
38 lines (35 loc) · 1.2 KB
/
index.html
File metadata and controls
38 lines (35 loc) · 1.2 KB
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
<!DOCTYPE html>
<html>
<head>
<!--meta tag-->
<meta charset="UTF-8">
<meta name="description" content="Kyung Hee Univ. Electronic Engineering. Team608. Graduation Project. Typing Assistant">
<meta name="keywords" content="Kyung Hee, Team608, Graduation Project, Typing Assistant">
<meta name="author" content="Junyoung Jung(sauber92)">
<!--web font-->
<link href="https://fonts.googleapis.com/css?family=Noto+Sans" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Noto+Serif" rel="stylesheet">
<!--css-->
<link rel="stylesheet" href="public/css/style.css">
<!--javascript-->
<script type="text/javascript" src="public/js/renderer.js"></script>
<title>Team608 | Typing Assistant</title>
</head>
<body>
<header>
<h1>Team608</h1>
<button id="btnStart" class="connect">Start</button>
<div class="clear-fix"></div>
<div class="line"></div>
</header>
<div class="word-section">
<p class="remain-time-text">Remain Time: <span id="time">60</span> sec</p>
<p class="score-text">Score: <span id="score">0</span></p>
<div class="clear-fix"></div>
<div id="fileSection"></div>
</div>
<footer>
<p>Made by Khug Hee Uiv. Electronic Engineering.</p>
</footer>
</body>
</html>