This repository has been archived by the owner on Sep 25, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
74 lines (51 loc) · 2.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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
<!DOCTYPE html>
<html lang="it">
<head>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>INSUPERATO</title>
<meta charset="utf-8" name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1, user-scalable=no">
<!--remove tap highlight windows phone IE10/11-->
<meta name="msapplication-tap-highlight" content="no" />
<!-- If you are using the CSS version, only link these 2 files, you may add app.css to use for your overrides if you like -->
<!--<link rel="stylesheet" href="foundation-5.3.3/css/normalize.css">-->
<link rel="stylesheet" href="foundation-5.3.3/css/foundation.css">
<!-- If you are using the gem version, you need this only -->
<!--<link rel="stylesheet" href="css/app.css">-->
<!--<script src="foundation-5.3.3/js/vendor/modernizr.js"></script>-->
<!-- Place favicon.ico and apple-touch-icon(s) in the root directory -->
<link rel="stylesheet" href="css/main.css">
<link rel="stylesheet" href="css/keys.css">
<!--jquery-->
<script src="js/jquery.min.js"></script>
<!--zurb-->
<script src="foundation-5.3.3/js/foundation.min.js"></script>
<!--animatore : transit -->
<script src="js/jquery.transit.min.js"></script>
<script src="js/plugins.js"></script>
<script src="js/main.js"></script>
<!--jquery ui-->
<script src="js/jquery-ui.js"></script>
<!--fast click-->
<script src="js/fastclick.js"></script>
<!--fast click-->
<script src="js/game-insuperato.js"></script>
<script>
$(document).ready(function() {
var tmptmp = new Game();
var size = tmptmp.dictionarySize();
$("span#paroletotali").append(size);
}); //jQuery is ready...
</script>
</head>
<body>
<a class="button expand" href="version2.html">Start!</a>
<ul class="pricing-table">
<li class="price">Insuperato v 0.7</li>
<li class="description">Componi la parola con le lettere della tastiera nel tempo stabilito.</li>
<li class="bullet-item">Dizionario di <span id="paroletotali" class="label label-warning"></span> parole</li>
<li class="bullet-item"><span class="label label-warning">7</span> livelli</li>
</ul>
<a class="button expand" href="version2.html">Start!</a>
<a class="button" href="version2.html">Un gioco di <a href="https://capolooper.it" rel="stocazzo">Capolooper</a></a>
</body>
</html>