-
Notifications
You must be signed in to change notification settings - Fork 5
/
index.html
34 lines (30 loc) · 1.01 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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="css/base.css">
<link rel="stylesheet" href="css/index.css">
<link rel="shortcut icon" href="fav.ico">
<title>Touch Type Training</title>
</head>
<body>
<div id="ttt-root">
<div id="play-box"></div>
<div id="control-panel"></div>
<br class="clear"/>
</div>
</body>
<script type="text/javascript" src="js/jquery-1.7.1.min.js"></script>
<script type="text/javascript" src="js/jquery-ui-1.8.18.custom.min.js"></script>
<script type="text/javascript" src="js/word.js"></script>
<script type="text/javascript" src="js/index.js"></script>
<script type="text/javascript">
var isMobile = (/iphone|ipod|android|blackberry|mini|windows\sce|palm/i.test(navigator.userAgent.toLowerCase()));
if(isMobile){
$(function(){
$('<div/>').text('Sorry! You need a PC to play this game.')
.attr('id', 'no-support-message')
.appendTo('body');
})
}
</script>
</html>