-
Notifications
You must be signed in to change notification settings - Fork 0
/
detail.html
110 lines (109 loc) · 3.33 KB
/
detail.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" href="icon.png">
<title>2048 game online play</title>
<meta name="keywords" content="2048 web game,Number puzzle game,Casual puzzle game">
<meta name="description" content="Get hooked on the addictive challenge of 2048! Combine numbered tiles, strategize your moves, and aim for the elusive 2048 tile. Play now and test your puzzle-solving skills at casualminigame.com!">
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f4f4f4;
min-height: 100vh;
position: relative;
}
.container {
max-width: 800px;
margin: 20px auto;
padding: 20px;
background-color: #fff;
border-radius: 8px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
h1 {
color: #333;
}
p {
color: #666;
}
.navbar-top, .navbar-bottom {
background-color: #007bff;
padding: 10px 0;
border-radius: 8px;
margin-bottom: 20px;
}
.navbar-top a, .navbar-bottom a, .footer a {
color: #fff;
text-decoration: none;
padding: 10px 20px;
border-radius: 5px;
margin-right: 10px;
}
.navbar-top a:hover, .navbar-bottom a:hover {
background-color: #0056b3;
}
.game-window {
width: 400px;
height: 400px;
background-color: #ccc;
margin-bottom: 20px;
}
.info {
margin-bottom: 20px;
}
.info p {
margin: 10px 0;
}
.button {
display: inline-block;
padding: 10px 20px;
background-color: #007bff;
color: #fff;
text-decoration: none;
border-radius: 5px;
margin-right: 10px;
}
.button:hover {
background-color: #0056b3;
}
.footer {
position: fixed;
bottom: 0;
width: 100%;
background-color: #007bff;
padding: 10px 0;
text-align: center;
color: #fff;
}
</style>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-BLBBCQEYY2"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-BLBBCQEYY2');
</script>
</head>
<body>
<div class="container">
<h1>2048</h1>
<div class="game-window">
<img src="icon.png" width="400" height="400" />
</div>
<div class="info">
<p>Merge two 2s together to make 4, two 4s together to make 8, and two eights together to make 16,get 2048 win</p>
<p>PC Control up down left right wsad</p>
<p>phone Control up down left right screen key</p>
</div>
<a href="https://www.casualminigame.com/" class="button">PLAY</a>
</div>
<div class="footer">
<a href="https://www.casualminigame.com">HOME</a>
</div>
</body>
</html>