-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
29 lines (28 loc) · 963 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<title>jsGames</title>
<link rel="stylesheet" href="index.css" />
</head>
<body>
<h1>JS Games</h1>
<p>
Okay, this site will probably always be a WIP, but feel free to go
through it :)
</p>
<h2>Playable</h2>
<ul>
<li><a href="simple-rpg/index.html">Simple RPG</a></li>
<li><a href="life">Conway's Game of Life</a></li>
<li><a href="NinetyNine.html">Ninety nine the Game</a></li>
<li><a href="TicTacToe.html">Tic-tac-toe</a></li>
<li><a href="RockPaperScissors.html">Rock-paper-scissors</a></li>
</ul>
<h2>Not Quite Playable</h2>
<ul>
<li><a href="WordleClone.html">Wordle-Clone</a></li>
<li><a href="wordSearch.html">Word Search</a></li>
<li><a href="BrickGame.html">Brick Game</a></li>
</ul>
</body>
</html>