-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
25 lines (25 loc) · 976 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="css/styles.css">
<title>M1 Lab 1</title>
</head>
<body>
<main>
<h1>Play Multiple Games in One Place!</h1>
<nav>
<ul>
<li><a href="games/larger-smaller.html">Larger or Smaller?</a></li>
<li><a href="games/coin-flip.html">The “Coin Flip” Game</a></li>
<li><a href="games/coin-flip-redux.html">The “Coin Flip” Game Redux </a></li>
<li><a href="games/coin-flip-streak.html">The “Coin Flip Streak” Game</a></li>
<li><a href="games/triangle.html">Looping a Triangle</a></li>
<li><a href="games/odd-even.html">Odd or Even?</a></li>
<li><a href="games/marco-polo.html">Marco! Polo! </a></li>
<li><a href="games/countdown.html">Countdown </a></li>
</ul>
</nav>
</main>
</body>
</html>