-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
66 lines (60 loc) · 2.36 KB
/
Copy pathcontact.html
File metadata and controls
66 lines (60 loc) · 2.36 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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>Hazy - Contáctanos</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="contact" class="sr">
<h2 class="section-title">Contáctanos</h2>
<p class="section-subtitle">Envíanos un mensaje y nos pondremos en contacto contigo.</p>
<div class="contact-container">
<form action="mailto:adrian@hazybot.net" method="post" enctype="text/plain">
<input type="text" name="Nombre" placeholder="Tu nombre" required>
<input type="email" name="Email" placeholder="Tu email" required>
<textarea name="Mensaje" rows="5" placeholder="Tu mensaje" required></textarea>
<button type="submit">Enviar Mensaje</button>
</form>
</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/hazybot','_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>