forked from dscabesit/playactivity
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgame.html
More file actions
204 lines (154 loc) · 5.33 KB
/
Copy pathgame.html
File metadata and controls
204 lines (154 loc) · 5.33 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
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
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="css/game.css">
<link rel="stylesheet" type="text/css" href="https://use.fontawesome.com/releases/v5.8.1/css/all.css">
<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.1.3/css/bootstrap.min.css">
</head>
<body>
<!--header-->
<header id="header" class="sticky-top">
<!--navbar-->
<nav class="navbar navbar-expand-lg navbar-dark bg-dark font-italic">
<div class="container">
<!--brand-->
<a href="#" class="navbar-brand">
<!--logo-->
<h2 class="font-italic">
Play
<span class="badge badge-primary shadow">Activity</span>
</h2>
</a>
<!--nav button-->
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navlinks">
<span class="navbar-toggler-icon"></span>
</button>
<!--nav Links-->
<div class="collapse navbar-collapse justify-content-end" id="navlinks">
<ul class="navbar-nav text-center">
<!--home-->
<li class="nav-item active">
<a href="home.html" class="nav-link">Home</a>
</li>
<!--products-->
<li class="nav-item ml-1">
<a href="sport.html" class="nav-link">Sports</a>
</li>
<li class="nav-item ml-1">
<a href="dance.html" class="nav-link">Dance</a>
</li>
</li>
<li class="nav-item ml-1">
<a href="music.html" class="nav-link">Music</a>
</li>
<li class="nav-item ml-1">
<a href="books.html" class="nav-link">Books</a>
</li>
</li>
</ul>
</div>
</div>
</nav>
<!--nav end-->
</header>
<!--header end-->
<main>
<!--banner-->
<article id="banner" class="jumbotron jumbotron-fluid">
<div class="font-italic pl-4 mt-4 text-light">
<h1 class="display-1 font-italic">
Play
<span class="badge badge-primary shadow">Game</span>
</h1>
<p class="lead mt-5">
make the game with dedication and
<i class="fa fa-heart ml-1 text-danger"></i>
</p>
</div>
</article>
<!--banner end-->
<div class="container mt-4">
<h4 class="text-center font-italic mb-4">Game List
<span class="fa fa-star fa-lg text-warning"></span>
</h4>
<div class="row justify-content-center font-italic mt-4">
<div class="col-md-4">
<!--product card-->
<article class="card text-center font-italic mb-4">
<!--product image-->
<img src="https://encrypted-tbn0.gstatic.com/images?q=tbn%3AANd9GcQ1yvkmjDP2Ajk-k5p8fZaQnWLaX-QIN7THUw&usqp=CAU" alt="image" class="card-img-top">
<div class="card-body">
<!-- name-->
<h5 class="card-title">
Call Of Duty
</h5>
<!--more info button-->
<a href="#" class="btn btn-success mb-2">
<i class="fa fa-info-circle" aria-hidden="true"></i>
More info
</a>
</div>
</article>
</div>
<div class="col-md-4">
<!--product card-->
<article class="card text-center font-italic mb-4">
<!--product image-->
<img src="chess3.jpg" alt="image" class="card-img-top" width="348px" height="348px">
<div class="card-body">
<!-- name-->
<h5 class="card-title">
Chess
</h5>
<!--more info button-->
<a href="#" class="btn btn-success mb-2">
<i class="fa fa-info-circle" aria-hidden="true"></i>
More info
</a>
</div>
</article>
</div>
<div class="col-md-4">
<!--product card-->
<article class="card text-center font-italic mb-4">
<!--product image-->
<img src="ludo.jpg" alt="image" class="card-img-top">
<div class="card-body">
<!-- name-->
<h5 class="card-title">
Ludo King
</h5>
<!--more info button-->
<a href="#" class="btn btn-success mb-2">
<i class="fa fa-info-circle" aria-hidden="true"></i>
More info
</a>
</div>
</article>
</div>
</div>
</div>
</main>
<footer id="footer" class="container-fluid mt-2">
<div class="d-flex justify-content-center">
<a href="#">
<i class="fab fa-instagram fa-3x"></i>
</a>
<a href="#">
<i class="fab fa-google-plus fa-3x"></i>
</a>
<a href="#">
<i class="fab fa-facebook fa-3x"></i>
</a>
<a href="#">
<i class="fab fa-twitter fa-3x"></i>
</a>
</div>
<p class="text-muted text-center mt-2 font-italic">
<!--copyright information-->
Copyright © 2020 Game
</p>
</footer>
</body>
</html>