-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
57 lines (40 loc) · 1.53 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
57
<!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>Gaming API</title>
<!-- Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<!-- Custom Style -->
<link rel="stylesheet" href="styles/style.css">
</head>
<body class="bg-dark">
<!-- Header -->
<header>
<h1 class="text-center my-5 text-white">Welcome To free game</h1>
</header>
<!-- Search Section -->
<section>
</section>
<!-- Card section -->
<section>
<div id="cards" class="row row-cols-1 row-cols-md-3 row-cols-lg-4 row-cols-xl-5 g-2 bg-dark">
</div>
<!-- Modal -->
<div class="modal fade" id="exampleModal" tabindex="-1" aria-labelledby="exampleModalLabel" aria-hidden="true">
<div id="modalDialog" class="modal-dialog">
</div>
</div>
</div>
</section>
<!-- Bootstrap Script -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM"
crossorigin="anonymous"></script>
<!-- custom script -->
<script src="js/app.js"></script>
</body>
</html>