-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
62 lines (54 loc) · 2.22 KB
/
index.html
File metadata and controls
62 lines (54 loc) · 2.22 KB
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
57
58
59
60
61
62
<!DOCTYPE html>
<html lang="en">
<head>
<title>Games</title>
<!--META-->
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<!--LINKS-->
<link rel="stylesheet" href="resources/libs/bootstrap-4.3.1/css/bootstrap.min.css">
</head>
<body>
<!--HEADER-->
<nav class="navbar navbar-dark bg-dark mb-3">
<ul class="navbar-nav m-auto">
<li class="nav-item">
<p class="text-center text-light h2">Games</p>
</li>
</ul>
</nav>
<!--CARDS-->
<div class="container">
<div class="card-deck">
<div class="card">
<img src="https://raw.githubusercontent.com/iamprovidence/Games/master/resources/images/logos/2048.png" class="card-img-top" alt="2048 game logo">
<div class="card-body">
<h5 class="card-title">2048</h5>
<p class="card-text">My version of the 2048 game</p>
<p class="card-text">Change the size of the grid as you want</p>
<a href="2048/" class="btn btn-primary w-100">play</a>
</div>
</div>
<div class="card">
<img src="https://raw.githubusercontent.com/iamprovidence/Games/master/resources/images/logos/snake.png" class="card-img-top" alt="Snake game logo">
<div class="card-body">
<h5 class="card-title">Snake</h5>
<p class="card-text">My version of the Snake game</p>
<p class="card-text">It's getting faster all the time</p>
<a href="Snake/Snake_js/" class="btn btn-primary w-100">play</a>
</div>
</div>
<div class="card">
<img src="https://raw.githubusercontent.com/iamprovidence/Games/master/resources/images/logos/shooter.png" class="card-img-top" alt="Snake game logo">
<div class="card-body">
<h5 class="card-title">Shoot to Thrill</h5>
<p class="card-text">My version of the Top Down View Shooter</p>
<p class="card-text">Stay still to shoot</p>
<a href="TopDownViewShooter/" class="btn btn-primary w-100">play</a>
</div>
</div>
</div>
</div>
</body>
</html>