-
Notifications
You must be signed in to change notification settings - Fork 0
/
home.html
60 lines (55 loc) · 1.48 KB
/
home.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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="gen.css">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Benny's Arcade</title>
</head>
<body>
<div class="topnav">
<a class="#" href="#">Home</a>
<a href="Tic.html">Beav-Tac-Toe</a>
<a href="pong.html">Beavs Pong</a>
<a href="snake.html">Snake</a>
</div>
<br>
<br>
<center><b><h1>Games</h1></b></center>
<center>
<div class="Card-container">
<div class="card">
<a href="Tic.html">
<br>
<img src="Tic_tac_toe.png" alt="Benny" style="width: 200px;">
<div class="container">
<h1><b>Beav-Tac-Toe</b></h1>
<p>Play Tic-Tac-Toe with Chainsaws and Logs</p>
</div>
</a>
</div>
<div class="card">
<a href="pong.html">
<br>
<br>
<img src="Pong.png" alt="Pong" style="width: 200px;">
<div class="container">
<h1><b>Beav Pong</b></h1>
<p>Play Beaver Themed Pong</p>
</div>
</a>
</div>
<div class="card">
<a href="snake.html">
<img src="Snake.png" alt="Snake" style="width: 200px;">
<div class="container">
<h1><b>Snake</b></h1>
<p>Slither around and eat cubes</p>
</div>
</a>
</div>
</div>
</center>
<script src ="Tic.js"></script>
</body>
</html>