This repository has been archived by the owner on Oct 25, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
90 lines (85 loc) · 2.89 KB
/
index.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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<title>InterChat</title>
<meta
name="description"
content="The best Cross-Server chatting bot on Discord!"
/>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="style.css" />
<link rel="icon" type="image/x-icon" href="logo/interchat.png" />
</head>
<body>
<script type="text/javascript" defer src="main.js"></script>
<script src="https://cdn.jsdelivr.net/particles.js/2.0.0/particles.min.js"></script>
<script>
particlesJS.load("particles-js", "particles.json", function () {
console.log("particles.json loaded...");
});
</script>
<div id="particles-js">
<div class="chatbot">
<img src="logo/interchat.png" alt="InterChat Logo" />
<h1>
Chat <span id="interchat_text_hi">Across Servers</span>, On Discord
</h1>
<p>
Eliminate boundaries and chat between servers, increase your server
activity, members and have the most fun you’ve ever had!
</p>
<div id="btn" class="button-container">
<a
class="inviteBtn"
href="https://interchat.fun/invite"
target="_blank"
>Invite</a
>
<a class="pulse" href="/support" target="_blank">Discord</a>
</div>
</div>
</div>
<button onclick="topFunction()" id="myBtn" title="Go to top"></button>
<div class="navcontainer">
<header>
<a class="logo" href="/"
><img src="logo/interchat.png" width="60px" height="60px" alt="logo"
/></a>
<nav id="navbar">
<ul class="nav__links">
<li><a href="#">Home</a></li>
<li><a href="https://docs.interchat.fun">Documentation</a></li>
<li><a href="#features">Features</a></li>
<li><a href="#about">About</a></li>
<li><a href="#staff">Staff</a></li>
</ul>
</nav>
<a class="cta" href="/invite" target="_blank">Invite</a>
<p class="menu cta">Menu</p>
</header>
</div>
<div class="overlay">
<a class="close">×</a>
<div class="overlay__content">
<p id="menuDisplay">Options</p>
<li><a href="#">Home</a></li>
<li><a href="https://docs.interchat.fun">Documentation</a></li>
<li><a href="#features">Features</a></li>
<li><a href="#staff">Staff</a></li>
<li><a href="#about">About</a></li>
</div>
</div>
<div id="scollPath"></div>
<div id="progressbar"></div>
<script
type="module"
src="https://unpkg.com/[email protected]/dist/ionicons/ionicons.esm.js"
></script>
<script
nomodule
src="https://unpkg.com/[email protected]/dist/ionicons/ionicons.js"
></script>
</body>
</html>