-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrules.html
More file actions
70 lines (64 loc) · 2.64 KB
/
Copy pathrules.html
File metadata and controls
70 lines (64 loc) · 2.64 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
66
67
68
69
70
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>Hazy - Rules</title>
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css" />
<link rel="stylesheet" href="css/styles.css">
</head>
<body>
<div id="particles-js"></div>
<nav class="sr">
<div class="nav-container">
<div class="nav-left">
<img src="hazy-logo.jpg" alt="Hazy Logo" class="nav-logo" />
<h2 id="logo">Hazy</h2>
</div>
<div class="nav-right">
<a href="index.html">Inicio</a>
<a href="comandos.html">Comandos</a>
<a href="precios.html">Precios</a>
<a href="changelog.html">Changelog</a>
<a href="rules.html">Rules</a>
<a href="contact.html">Contáctanos</a>
<a class="invite-btn" href="https://invite.hazybot.net" target="_blank">Invitar al Bot</a>
</div>
</div>
</nav>
<section id="rules" class="sr">
<h2 class="section-title">HAZY® RULES</h2>
<p class="section-subtitle">Al unirte al servidor, aceptas estos términos:</p>
<div class="rules-container">
<div class="rules-card">
<h3>Reglas del Servidor</h3>
<p><strong>1.1)</strong> Respeta los <a href="https://discord.com/terms" target="_blank">Términos y Condiciones de Discord</a>.</p>
<p><strong>1.2)</strong> No se permite SPAM ni FLOOD.</p>
<p><strong>1.3)</strong> Prohibido ACOSO o DOXING.</p>
<p><strong>1.4)</strong> Refund solo por error de nuestra parte.</p>
<p><strong>1.5)</strong> No se permite RESELL; reventa terminará en BLACKLIST.</p>
<p><strong>1.6)</strong> Actividad sospechosa resulta en BLACKLIST.</p>
<p><strong>1.7)</strong> Al unirte, aceptas nuestros Términos y Condiciones.</p>
</div>
</div>
</section>
<footer class="sr">
<p>Hazy® 2025 • Made By Adrian | <a href="https://invite.hazybot.net" target="_blank">Invitar al Bot</a></p>
</footer>
<div class="support-bubble" onclick="window.open('https://discord.gg/89k3NWK4eR','_blank')">
<i class="fab fa-discord"></i>
</div>
<script src="https://cdn.jsdelivr.net/npm/particles.js@2.0.0/particles.min.js"></script>
<script src="https://unpkg.com/scrollreveal"></script>
<script src="js/main.js"></script>
</body>
</html>
<script>
function closeBotNotification() {
const botNotification = document.getElementById('botNotification');
if (botNotification) {
botNotification.style.display = 'none';
}
}
</script>