-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfirstGame.html
157 lines (131 loc) · 5.84 KB
/
firstGame.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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
<!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">
<title>Home</title>
<link rel="shortcut icon" href="fav.png">
<link rel="stylesheet" href="styleGame.css">
<link href='https://unpkg.com/boxicons@2.1.2/css/boxicons.min.css' rel='stylesheet'>
</head>
<body>
<header>
<div class="scrollable">
<div class="nav container">
<a href="Home.html" class="logo">Game<span>Parlour</span></a>
</div>
<div class="flip-card">
<div class="flip-card-inner">
<div class="flip-card-front">
<img src="G1.jpg" alt="Avatar" style="width:300px;height:300px;">
</div>
<div class="flip-card-back">
<h1>Rock-Paper-Scissor</h1>
<h3>Luck Based</h3>
<div class="rating">
<i class='bx bxs-star'></i>
<span>4.7</span>
</div>
<button id="myButton" class="btn">Play</button>
<script type="text/javascript">
document.getElementById("myButton").onclick = function () {
location.href = "Rock-Paper-Scissor.html";
};
</script>
</div>
</div>
</div>
<div class="flip-card2">
<div class="flip-card-inner">
<div class="flip-card-front">
<img src="G2.jpg" alt="Avatar" style="width:300px;height:300px;">
</div>
<div class="flip-card-back">
<h1>Tic Tac Toe</h1>
<h3>Easy</h3>
<div class="rating">
<i class='bx bxs-star'></i>
<span>4.5</span>
</div>
<button id="myButton2" class="btn">Play Now</button>
<script type="text/javascript">
document.getElementById("myButton2").onclick = function () {
location.href = "tic-tac-toe.html";
};
</script>
</div>
</div>
</div>
<div class="flip-card3">
<div class="flip-card-inner">
<div class="flip-card-front">
<img src="G3.jpg" alt="Avatar" style="width:300px;height:300px;">
</div>
<div class="flip-card-back">
<h1>Number Guessing</h1>
<h4></h4>
<h3>Luck Based</h3>
<h4></h4>
<div class="rating">
<i class='bx bxs-star'></i>
<span>4.7</span>
</div>
<button id="myButton3" class="btn">Play</button>
<script type="text/javascript">
document.getElementById("myButton3").onclick = function () {
location.href = "Number-Guessing.html";
};
</script>
</div>
</div>
</div>
<div class="flip-card4">
<div class="flip-card-inner">
<div class="flip-card-front">
<img src="G15.jpg" alt="Avatar" style="width:300px;height:300px;">
</div>
<div class="flip-card-back">
<h1>Sokban Game</h1>
<h3>Easy</h3>
<div class="rating">
<i class='bx bxs-star'></i>
<span>4.5</span>
</div>
<button id="myButton4" class="btn">Play Now</button>
<script type="text/javascript">
document.getElementById("myButton4").onclick = function () {
location.href = "Sokban.html";
};
</script>
</div>
</div>
</div>
<div class="flip-card5">
<div class="flip-card-inner">
<div class="flip-card-front">
<img src="G16.jpg" alt="Avatar" style="width:300px;height:300px;">
</div>
<div class="flip-card-back">
<h1>Racing Moto Game</h1>
<h3>Easy</h3>
<div class="rating">
<i class='bx bxs-star'></i>
<span>4.5</span>
</div>
<button id="myButton5" class="btn">Play Now</button>
<script type="text/javascript">
document.getElementById("myButton5").onclick = function () {
location.href = "Racing.html";
};
</script>
</div>
</div>
</div>
<!-- Link Swiper File-->
<script src="swiper-bundle.min.js"></script>
<!--Link to Js-->
<script src="main.js"></script>
<div class="scrollable">
</header>
</body>