-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
29 lines (28 loc) · 1.42 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
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Base Camp at Mars</title>
<link rel="stylesheet" href="./css/style.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Ranchers">
</head>
<body>
<div class="container">
<!-- <div class="head">
<h1>Welcome to the base!</h1>
</div> -->
<div class="buttons">
<h2 class="head">Welcome to the base! : Tic_Tac_Toe</h2>
<nav class="menu">
<ol class="buttonList" >
<li class="menu-item"><a href="minimax.html" style="cursor: pointer;"><strong>Minimax</strong> </br> (7 AI Levels)</a></li>
<li class="menu-item"><a href="negamax.html" style="cursor: pointer;"><strong>Negamax</strong> </br> Varying Grid Sizes upto 9X9</a></li>
<li class="menu-item"><a href="mcts.html" style="cursor: pointer;"><strong>MCTS</strong> </br> Suggestions for Human</a></li>
<li class="menu-item"><a href="twoPlayer.html" style="cursor: pointer;">Two Player Game</a></li>
</ol>
</nav>
<p style="margin-bottom: -20px; text-align: center; color: white;">A project by <a href="https://github.com/gaurav7019/engage2020" style="color: yellow;">Team Binary Brains</a></p>
</div>
</div>
</body>
</html>