-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgames.html
100 lines (94 loc) · 2.29 KB
/
games.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>clients | chompyweb</title>
<script src="https://cdn.jsdelivr.net/particles.js/2.0.0/particles.min.js"></script>
<style>
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background: linear-gradient(to right, #0000FF, #9D00FF);
color: #fff;
margin: 0;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
text-align: center;
}
h1 {
font-size: 3em;
margin-bottom: 1em;
text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}
.dropdown {
margin: 1em 0;
}
.dropdown a {
background-color: rgba(255, 255, 255, 0.1);
color: white;
padding: 15px 30px;
text-decoration: none;
display: inline-block;
font-size: 18px;
border-radius: 8px;
transition: background-color 0.3s, transform 0.3s;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.dropdown a:hover {
background-color: rgba(255, 255, 255, 0.2);
transform: translateY(-5px);
}
#particles-js {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: -1; /* Place behind all content */
}
</style>
</head>
<body>
<h1>Clients</h1>
<div id="particles-js"></div>
<div class="dropdown">
<a href="gamekingdom.html">Game Kingdom</a>
</div>
<div class="dropdown">
<a href="chompywebg.html">Chompyweb games</a>
</div>
<script>
particlesJS('particles-js', {
particles: {
number: { value: 50 },
color: { value: "#ffffff" },
shape: { type: "circle" },
opacity: { value: 0.5 },
size: { value: 4 },
line_linked: {
enable: true,
distance: 150,
color: "#ffffff",
opacity: 0.4,
width: 1,
},
move: {
enable: true,
speed: 3,
},
},
interactivity: {
detect_on: "window",
events: {
onhover: { enable: true, mode: "grab" },
onclick: { enable: true, mode: "push" },
},
},
retina_detect: true,
});
</script>
</body>
</html>