-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
38 lines (35 loc) · 969 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
29
30
31
32
33
34
35
36
37
38
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Society Games Solver</title>
<link href="style.css" rel="stylesheet">
</head>
<body>
<header>
<h1>A society games solver</h1>
<p>A simple program to tell you what to play in nim games.</p>
</header>
<main>
<div class="card">
<a href="nim/index.html">
<img src="img/classical_nim.svg" alt="" style="width:100%">
<div class="container">
<h4><b>Classical Nim Game</b></h4>
</div>
</a>
</div>
<div class="spacer"></div>
<div class="card">
<a href="nim_variant/index.html">
<img src="img/nim_fort_boyard.svg" alt="" style="width:100%">
<div class="container">
<h4><b>Nim Game (variant)</b></h4>
</div>
</a>
</div>
</main>
</body>
</html>