-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
46 lines (45 loc) · 1.46 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
<!DOCTYPE html>
<html>
<head>
<title>AI bot games in JS</title>
<style>
.static {
position:absolute;
background: white;
}
.static:hover {
opacity:0;
}
</style>
</head>
<body>
<h1>AI bot games made in JS</h1>
<h2>Click on image to play</h2>
<div>
<h1>Ping Pong:</h1>
<a href='./pingpong'>
<div>
<img class='static' width=50% src='https://user-images.githubusercontent.com/47502256/152688525-e315edab-37d4-453a-b458-fc498acada02.png'/>
<img width=50% src='https://user-images.githubusercontent.com/47502256/152688564-f7f955f1-d63b-4006-8be3-3c9475e7bd4c.gif'/>
</div>
</a>
</div>
<div>
<h1>tRex Runner:</h1>
<a href='./tRexRunner'>
<div>
<img class='static' width=50% src='https://user-images.githubusercontent.com/47502256/152689422-a6af8d79-f4a6-44f7-a826-cbd7388b091e.png'/>
<img width=50% src='https://user-images.githubusercontent.com/47502256/152688575-2e81d7ba-682d-4320-9ab6-1bf9ae3843c9.gif'/>
</div>
</a>
</div>
<div>
<h1>2048:</h1> <a href='./game2048'>
<div>
<img class='static' width=50% src='https://user-images.githubusercontent.com/47502256/152688536-aa87f239-271d-4441-9319-3f16c6848a51.png'/>
<img width=50% src='https://user-images.githubusercontent.com/47502256/152688642-ab8b1034-223c-46e0-815a-528d140c7d70.gif'/>
</div>
</a>
</div>
</body>
</html>