-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathXRat.html
More file actions
43 lines (39 loc) · 1.54 KB
/
XRat.html
File metadata and controls
43 lines (39 loc) · 1.54 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
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>XRAT - Powerful RAT TOOL</title>
<link rel="stylesheet" href="styles.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.11.4/gsap.min.js"></script>
<link href="https://fonts.googleapis.com/css2?family=Orbitron:wght@700&display=swap" rel="stylesheet">
</head>
<body>
<div class="cursor-star"></div>
<header>
<div class="logo">XRAT</div>
</header>
<div class="background">
<div class="falling-stars-container"></div>
<div class="background-overlay"></div>
</div>
<main>
<section class="hero">
<div class="star-container">
<svg id="interactive-star" class="blue-star" viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg">
<path d="M100 20 L130 70 L185 78 L145 118 L155 180 L100 150 L45 180 L55 118 L15 78 L70 70 Z"
fill="rgba(0, 123, 255, 0.8)"
stroke="#00a2ff"
stroke-width="5"/>
</svg>
</div>
<div class="hero-content">
<a href="https://discord.gg/2BDy8nxb" target="_blank" class="buy-token-btn">Buy XRAT</a>
</div>
</section>
</main>
<script src="interactive-star.js"></script>
<script src="falling-stars.js"></script>
<script src="cursor-star.js"></script>
<script src="background-effect.js"></script>
</body>
</html>