-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex_.html
83 lines (81 loc) · 2.74 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
75
76
77
78
79
80
81
82
83
<html>
<head>
<title>2048-AI</title>
<meta name="description" content="AI playing 2048.truemaxdh's works of coding including game, utility, arts">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" href="https://truemaxdh.github.io/icon.png" type="image/png">
<link rel="stylesheet" href="https://truemaxdh.github.io/Style/skin.css">
<style>
body {
text-align: center;
}
button {
transition : 0.7s ease all;
-moz-transition : 0.7s ease all;
-webkit-transition : 0.7s ease all;
width : 100px;
height : 100px;
border-radius : 10px;
background : #73AD21;
color : white;
word-wrap : break-word;
font-size : 16px;
font-weight : bold;
font-height:100px;
//float : left;
cursor : pointer;
}
button:hover {
transform : scale(1.1, 1.1);
-moz-transform : scale(1.1, 1.1);
-webkit-transform : scale(1.1, 1.1);
transform-origin : center;
-moz-transform-origin : center;
-webkit-transform-origin : center;
transition : transform 1.0s ease all;
-moz-transition : transform 1.0s ease all;
-webkit-transition : transform 1.0s ease all;
background : #21AD73;
}
.cont {
width:300px;
}
</style>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-81183833-2"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-81183833-2');
</script>
</head>
<body>
<script>var cookieBread = ">Game>2048-AI";</script>
<script src="https://truemaxdh.github.io/Include/header.js"></script>
<div class="cont">
<h4>Training</h4>
<hr>
<button onclick="location.href='./EA/index.html'">Evolution Algorithm</button>
<button onclick="location.href='./GT/index.html'">Guided Training</button>
</div>
<p></p>
<div class="cont">
<h4>Verify</h4>
<hr>
<button onclick="location.href='./Verify/index.html'">Verify Results</button>
<button onclick="location.href='./TestModel/index.html'">Test<br>Model</button>
</div>
<!-- Google Adsense -->
<script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
<!-- AutoResponse -->
<ins class="adsbygoogle"
style="display:block"
data-ad-client="ca-pub-7307479428475282"
data-ad-slot="8718898251"
data-ad-format="auto"></ins>
<script>
(adsbygoogle = window.adsbygoogle || []).push({});
</script>
</body>
</html>