-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.html
56 lines (40 loc) · 1.59 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
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
<!doctype html>
<html class="no-js" lang="">
<head>
<meta charset="utf-8">
<title>Minigames</title>
<meta name="description" content="Collections of PHP and JS based minigames">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Place favicon.ico in the root directory -->
<meta name="theme-color" content="#fafafa">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" integrity="sha384-JcKb8q3iqJ61gNV9KGb8thSsNjpSL0n8PARn9HuZOnIxN0hoP+VmmDGMN5t9UJ0Z" crossorigin="anonymous">
<script src="https://code.jquery.com/jquery-3.5.1.min.js" integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script> <script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js" integrity="sha384-B4gt1jrGC7Jh4AgTPSdUtOBvfO8shuf57BaghqFfPlYxofvL8/KUEfYiJOMMV+rV" crossorigin="anonymous"></script>
<style>
body{
background-color: #1e211f;
}
.content{
color: #a8bfb0;
}
</style>
</head>
<body>
<div class="container">
<div class="jumbotron">
<h1>Minigames</h1>
</div>
<div class="content">
<h2>Current Collections: </h2>
<ol>
<li><a href="hangman/">Hangman</a></li>
<li><a href="./color game/index.html">Color guessing game</a></li>
<li><a href="./tic-tac-toe/index.html">Tic-Tac-Toe</a></li>
<li><a href="./snake/index.html">Snake game</a></li>
</ol>
</div>
<div class="footer">
<a href="https://github.com/TheRealDarkCoder/minigames">Source Code</a>
</div>
</div>
</body>
</html>