-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
66 lines (64 loc) · 2.09 KB
/
index.html
File metadata and controls
66 lines (64 loc) · 2.09 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Interactive 🌌 Memory Card Game</title>
<!--<link rel="stylesheet" href="./style.css">-->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css">
<style>
/* styles.css */
@import url(
"https://fonts.googleapis.com/css2?family=Pacifico&display=swap");
* {
box-sizing: border-box;
margin: 0;
padding: 0;
color:#fff;
}
body {
font-family: 'Arial', sans-serif;
background-image: url("https://i.pinimg.com/originals/c7/fb/05/c7fb05d41cd30ccf51985313c434b92f.gif");
display: flex;
align-items: center;
justify-content: center;
height: 100vh;
margin: 0;
background-color: #f8f9fa;
}
.card {
overflow: hidden;
background-image: url("https://cdn.pixabay.com/animation/2023/06/06/06/51/06-51-32-766_512.gif");
background-size: cover;
animation: sparkleBackground 10s infinite linear;
width: 80px;
height: 120px;
margin: 10px;
border: 1px solid #333;
display: flex;
align-items: center;
justify-content: center;
font-size: 24px;
font-weight: bold;
cursor: pointer;
}
.row {
display: flex;
flex-wrap: wrap;
}
</style>
</head>
<body>
<div id="gameBoard" class="container">
<div class="row" id="cardsContainer"></div>
<center><footer><p style="color:#fff;">🤩Powered by <a style="color:Azure;"href="https://github.com/Akshayadeveloper"target="_blank">
💗Akshaya developer</a></p>
</footer></center>
</div>
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/lodash@4.17.21/lodash.min.js"></script>
<script src="./script.js">
</script>
</body>
</html>