-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCoverPage.html
74 lines (66 loc) · 3.01 KB
/
CoverPage.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!--Bootstrap CSS-->
<link rel="stylesheet" href="node_modules/bootstrap/dist/css/bootstrap.min.css"/>
<link rel="stylesheet" href="style.css"/>
<link rel="stylesheet" href="node_modules/font-awesome/css/font-awesome.min.css"/>
<link rel="stylesheet" href="node_modules/bootstrap-social/bootstrap-social.css"/>
<title>Gaming</title>
</head>
<body>
<header class="jumbotron jumbotron-fluid">
<div class="container">
<div class="row">
<div class="col-4 col-sm-3 col-md-2 align self-center">
</div>
<div class="col">
<h1>Games</h1>
<a href="#"><button class="btn btn-light">Home Page</button></a>
</div>
</div>
</div>
</header>
<div class="container" id="cavasArea">
<div class="row row-content">
<div class="card-deck">
<div class="card col-sm-3 mt-5" style="width: 18rem;">
<img class="card-img-top" src="ColorGame/ColorGuessImage.jpeg" alt="Color Game Image">
<div class="card-body d-flex flex-column">
<h5 class="card-title">Color Guessing Game</h5>
<p class="card-text">Guess the right color from the list of colors!</p>
<a href="ColorGame/ColorGuessGame.html" class="btn btn-info">Play the Game!</a>
</div>
</div>
<div class="card col-sm-3 mt-5" style="width: 18rem;">
<img class="card-img-top" src="SmileyMatchGame/images/Smile.png" alt="Smiling Face Image">
<div class="card-body d-flex flex-column">
<h5 class="card-title">Smiley Match Game</h5>
<p class="card-text">Choose the extra smiley face on the left side!</p>
<a href="SmileyMatchGame/Matching-gamee.html" class="btn btn-info">Play the Game!</a>
</div>
</div>
<div class="card col-sm-3 mt-5" style="width: 18rem;">
<img class="card-img-top" src="SnakeGame/snake-game.png" alt="Snake Image Cover">
<div class="card-body d-flex flex-column">
<h5 class="card-title">Classic Snake Game</h5>
<p class="card-text">Classic Snake Game! Don't touch the edges or the snake body itself!</p>
<a href="SnakeGame/SnakeGame.html" class="btn btn-info">Play the Game!</a>
</div>
</div>
<div class="card col-sm-3 mt-5" style="width: 18rem;">
<img class="card-img-top" src="TicTacToeGame/TTTCover.png" alt="Tic Tac Toe Image">
<div class="card-body d-flex flex-column">
<h5 class="card-title">Tic Tac Toe!</h5>
<p class="card-text">Get 3 in a row to win!</p>
<a href="TicTacToeGame/TicTacToe.html" class="btn btn-info">Play the Game!</a>
</div>
</div>
</div>
</div>
</div>
</body>
</html>