-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
127 lines (110 loc) · 4.26 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
<link rel="manifest" href="/site.webmanifest">
<link rel="mask-icon" href="/safari-pinned-tab.svg" color="#5bbad5">
<meta name="msapplication-TileColor" content="#da532c">
<meta name="theme-color" content="#ffffff">
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-1Z5DNPCXWE"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-1Z5DNPCXWE');
</script>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Rabbit Network</title>
<link rel="stylesheet" href="/css/index.css">
<script type="text/javascript" src="/js/ipcopy.js"></script>
</head>
<body>
<header>
<nav class="navbar">
<ul>
<li><a href="/en/changelog.html">Changelog</a></li>
<li><a href="/store/store.html">Store</a></li>
<li><a href="/en/information.html">Information</a></li>
</ul>
</nav>
</header>
<div class="hero-section">
<div class="hero-content">
<h1>Rabbit Network</h1>
<p>Welcome to Rabbit Network, a place with exciting gamemodes and endless possibilities!</p>
</div>
</div>
<!-- Adding an image of a castle -->
<section>
<img src="/images/castle.png" alt="Castle Image" class="section-image">
</section>
<section class="server-info">
<h2>Server Information</h2>
<ul>
<li>IP: <code style="font-size: 20px">rabbit-network.net</code> <button onclick="copyToClipboard('rabbit-network.net')">Copy IP</button></li>
<li>Minecraft Version: 1.21+ Bedrock and Java compatible (works on 1.19.4+ even though it is not recommended)</li>
<li>Bedrock Port: 19135</li>
<li>Discord Server: <a href="https://discord.gg/AGnu449cMf" target="_blank">Join us on Discord</a></li>
<li>Twitch: <a href="https://twitch.tv/rabbittv" target="_blank">Watch us on Twitch</a></li>
<li>YouTube: <a href="https://youtube.com/@rabbittv_" target="_blank">Subscribe on YouTube</a></li>
</ul>
</section>
<div id="alertBox">Copied the IP to clipboard!</div>
<!-- Adding an image of the Nether with purple color -->
<section>
<img src="/images/mountains.png" alt="Mountains Image" class="section-image">
</section>
<section>
<h2>Gamemodes</h2>
<div class="feature-box creative">
<h3>Creative</h3>
<p>Are you tired of always having to vote for world edit and those super small plots? Well on Rabbit Network, you have all world edit command for free no voting required! Also you get a 450x450 block plot so you never run out of space.</p>
</div>
<div class="feature-box survival">
<h3>Survival</h3>
<p>Our survival world is nothing like others! It features a bunch of cool custom biomes in all three dimensions! It also has a wide variety of custom structures with special enchantments and special items. All of this with grief protection for those who don't like having their base destroyed!</p>
</div>
</section>
<section>
<h2>Server Specifications</h2>
<ul>
<li>Processor: Intel Core i3-12100f</li>
<li>RAM: 32GB DDR4 @ 3200MHz</li>
<li>Storage: 512GB NVME SSD</li>
<li>Network: 1+ GB/s Ethernet</li>
</ul>
</section>
<!-- Adding an image of a cave -->
<section>
<img src="/images/cave.png" alt="Cave Image" class="section-image">
</section>
<section>
<h2>Additional Server IPs</h2>
<ul>
<li><code>mc.rabbit-network.net</code></li>
<li><code>play.rabbit-network.net</code></li>
</ul>
</section>
<section>
<h2>Software Used</h2>
<p>Server proxy is Velocity. All backend servers are running Purpur 1.21.1. The physical server is running Ubuntu server and the servers are managed with Crafty Controller.</p>
</section>
<section>
<h2>Staff</h2>
<ul class="staff-list">
<li>[OWNER] RabbitTV</li>
<li>[ADMIN] Aporm</li>
<li></li>
</ul>
</section>
<center>
<footer id="footer"><b>
© 2023 - 2024 Rabbit Network. All rights Reserved. <a href="https://github.com/RabbitTV22/Website">Source code</a></b>
</footer>
</center>
</body>
</html>