This repository has been archived by the owner on Aug 18, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathindex.html
360 lines (317 loc) · 13 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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
<!--
Template made by: Rick Klaasboer
www.rickklaasboer.online
Version: 1.0.0
Note: All the images on the demo are not stored locally,
but stored on other servers,
if they're not showing, one of the links could be broken!
Need support?
PM me on SpigotMC (https://www.spigotmc.org/members/gewoonrick.31710/)
See anything broken?
PM me on SpigotMC (https://www.spigotmc.org/members/gewoonrick.31710/)
-->
<!DOCTYPE html>
<html lang="en">
<head>
<title>A Free Minecraft Template By Rick Klaasboer</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta charset="utf-8">
<!-- Custom CSS for this template -->
<link rel="stylesheet" type="text/css" href="css/main.css">
<!-- Font -->
<link href="https://fonts.googleapis.com/css?family=PT+Sans" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=PT+Sans:700" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=PT+Sans:400" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Lato" rel="stylesheet">
<!-- Bootstrap -->
<link rel="stylesheet" type="text/css" href="css/bootstrap/bootstrap-grid.min.css">
<link rel="stylesheet" type="text/css" href="js/bootstrap/bootstrap.min.js">
<!-- Font Awesome -->
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.0.12/css/all.css" integrity="sha384-G0fIWCsCzJIMAVNQPfjH08cyYaUtMwjJwqiRKxxE/rx96Uroj1BtIQ6MLJuheaO9" crossorigin="anonymous">
</head>
<body>
<button onclick="topFunction()" id="myBtn" title="Go to top"><i class="fas fa-arrow-up"></i></button>
<!-- Navbar -->
<div class="topnav" id="myTopnav">
<div class="max-width">
<a href="#head">Home</a>
<a href="#about">About</a>
<a href="#gamemodes">Gamemodes</a>
<a href="#vote">Vote</a>
<a href="#staff">Staff</a>
<a href="javascript:void(0);" style="font-size:15px;" class="icon" onclick="myFunction()">☰</a>
</div>
</div>
<!-- End Navbar -->
<!-- Header (Banner) -->
<header id="head" class="parallax">
<h1>A Minecraft Server</h1>
<h3>play.yourdomain.com</h3>
</header>
<!-- End Header -->
<!-- About Section -->
<section id="about">
<h1>OUR SERVER</h1>
<p>Some of our features.</p>
<hr>
<!-- First row of features -->
<div class="row features">
<div class="col">
<i class="fab fa-cloudscale feature"></i>
<h2>We're fast, like sonic</h2>
<p>Our servers are so blazing fast, even Sonic can't keep up, amazing, right?!</p>
</div>
<div class="col">
<i class="fas fa-users feature"></i>
<h2>Great Community</h2>
<p>We've got an amazing community, it's always fun on our server!</p>
</div>
<div class="col">
<i class="fas fa-shield-alt feature"></i>
<h2>Always online</h2>
<p>Our server has a 99.9% Uptime, so you'll be playing whenever you want!</p>
</div>
</div>
<!-- End first row -->
<!-- Second row of features -->
<div class="row features">
<div class="col">
<i class="far fa-calendar-alt feature"></i>
<h2>Amazing events</h2>
<p>We've got some super fun events in store for you, it's amazing, seriously, the best!</p>
</div>
<div class="col">
<i class="fas fa-code-branch feature"></i>
<h2>Custom Plugins</h2>
<p>We've created some custom plugins for our server, they're amazing, you'll like them!</p>
</div>
<div class="col">
<i class="fas fa-fighter-jet feature"></i>
<h2>Fighter Jet</h2>
<p>This isn't a feature but I just really like fighter jets, nah it's a filler.</p>
</div>
</div>
<!-- End second row -->
<!-- Note: You can add as many feature rows as you like. -->
</section>
<!-- End about section -->
<!-- Banner 1 -->
<section id="banner" class="parallax">
<h1>WHAT ARE YOU WAITING FOR?</h1>
<h2>JOIN OUR SERVER NOW AT <i>PLAY.YOURDOMAIN.COM</i></h2>
</section>
<!-- End Banner 1 -->
<!-- Gamemodes Section -->
<section id="gamemodes">
<h1>GAMEMODES</h1>
<p>Stuff and things you can do on our server</p>
<hr>
<!-- First Gamemode -->
<div class="row fixed-width">
<div class="col-md mode">
<h2>SURVIVAL</h2>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis eu elementum justo. Morbi in venenatis dui. Mauris quis efficitur orci, ut venenatis massa. Pellentesque gravida ante sit amet condimentum tristique. Suspendisse at gravida nunc, mattis sagittis velit. Pellentesque molestie mauris risus, et elementum metus mattis sit amet. Aliquam id ex ac augue tempor convallis. Nunc id consequat nibh. Suspendisse rhoncus nulla at nisl egestas vulputate vel vitae ex. In est nibh, tempus vitae ipsum vel, eleifend dictum diam. Ut dapibus massa sed turpis dictum pretium. Mauris tempus sapien sit amet turpis sodales, sit amet sollicitudin augue tincidunt. Donec ullamcorper suscipit laoreet.</p>
</div>
<!-- Gamemode Image -->
<div class="col-md img">
<img class="res-img" src="https://via.placeholder.com/1920x1080">
</div>
<!-- End Gamemode Image -->
</div>
<!-- End First Gamemode -->
<section class="gray">
<!-- Second Gamemode -->
<div class="row fixed-width">
<!-- Image Second Gamemode -->
<div class="col-md img">
<img class="res-img" src="https://via.placeholder.com/1920x1080">
</div>
<!-- End Image Second Gamemode -->
<div class="col-md mode">
<h2>FACTIONS</h2>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis eu elementum justo. Morbi in venenatis dui. Mauris quis efficitur orci, ut venenatis massa. Pellentesque gravida ante sit amet condimentum tristique. Suspendisse at gravida nunc, mattis sagittis velit. Pellentesque molestie mauris risus, et elementum metus mattis sit amet. Aliquam id ex ac augue tempor convallis. Nunc id consequat nibh. Suspendisse rhoncus nulla at nisl egestas vulputate vel vitae ex. In est nibh, tempus vitae ipsum vel, eleifend dictum diam. Ut dapibus massa sed turpis dictum pretium. Mauris tempus sapien sit amet turpis sodales, sit amet sollicitudin augue tincidunt. Donec ullamcorper suscipit laoreet.</p>
</div>
</div>
<!-- End Second Gamemode -->
</section>
<!-- Start Third Gamemode -->
<div class="row fixed-width">
<div class="col-md mode">
<h2>CREATIVE</h2>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis eu elementum justo. Morbi in venenatis dui. Mauris quis efficitur orci, ut venenatis massa. Pellentesque gravida ante sit amet condimentum tristique. Suspendisse at gravida nunc, mattis sagittis velit. Pellentesque molestie mauris risus, et elementum metus mattis sit amet. Aliquam id ex ac augue tempor convallis. Nunc id consequat nibh. Suspendisse rhoncus nulla at nisl egestas vulputate vel vitae ex. In est nibh, tempus vitae ipsum vel, eleifend dictum diam. Ut dapibus massa sed turpis dictum pretium. Mauris tempus sapien sit amet turpis sodales, sit amet sollicitudin augue tincidunt. Donec ullamcorper suscipit laoreet.</p>
</div>
<!-- Image Third Gamemode -->
<div class="col-md img">
<img class="res-img" src="https://via.placeholder.com/1920x1080">
</div>
<!-- End Image Third Gamemode -->
</div>
<!-- End Third Gamemode -->
</section>
<!-- End Gamemode Section -->
<!-- Start Second Banner -->
<section id="banner2" class="parallax">
<h1>LOOKING TO BUY A RANK?</h1>
<h2>CHECK OUT THE STORE AT <i><a href="#">STORE.YOURDOMAIN.COM</a></i></h2>
</section>
<!-- End Second Banner -->
<!-- Vote Section -->
<section id="vote">
<h1>VOTE FOR OUR SERVER</h1>
<p>Vote for some really amazing rewards</p>
<hr>
<div class="row votelist">
<!-- First Vote Link -->
<div class="col-md voteblock">
<img class="res-img-sm" src="https://www.planetminecraft.com/images/layout/planetminecraft_logo.png">
<h2>PlanetMinecraft</h2>
<a href="#">Vote now</a>
</div>
<!-- End First Vote Link -->
<!-- Second Vote Link -->
<div class="col-md voteblock">
<img class="res-img-sm" src="https://yt3.ggpht.com/-St0amFDpbC0/AAAAAAAAAAI/AAAAAAAAAAA/eZlt0WfF-F8/s288-mo-c-c0xffffffff-rj-k-no/photo.jpg">
<h2>ServerPact</h2>
<a href="#">Vote now</a>
</div>
<!-- End Second Vote Link -->
<!-- Third Vote Link -->
<div class="col-md voteblock">
<img class="res-img-sm" src="https://minecraft-server-list.com/minelog/wp-content/uploads/High-Res-App-Icon.jpg">
<h2>MinecraftMP</h2>
<a href="#">Vote now</a>
</div>
<!-- End Third Vote Link -->
</div>
<!-- Note -->
<p>Please note that sometimes rewards can take up to 10 minutes to receive, if you don't receive any rewards, please contact a staff member.</p>
</section>
<!-- End Vote Section -->
<!-- Third Banner -->
<section id="banner3" class="parallax">
<h1>HAVE A QUESTION?</h1>
<h2>CONTACT US AT <i><a href="mailto:#">[email protected]</a></i></h2>
</section>
<!-- End Third Section -->
<!-- Staff Section -->
<section id="staff">
<h1>OUR STAFF</h1>
<p>The staff members of our server</p>
<hr>
<!-- First Row Staff -->
<div class="row stafflist">
<!-- First Staff Member -->
<div class="col-md staffblock">
<img width="100px;" src="https://mamaneedsahobby.files.wordpress.com/2013/09/steve-face.jpg?w=1000&h=">
<h2>Some dude</h2>
<p>Owner</p>
</div>
<!-- End First Staff Member -->
<!-- Second Staff Member -->
<div class="col-md staffblock">
<img width="100px;" src="https://mamaneedsahobby.files.wordpress.com/2013/09/steve-face.jpg?w=1000&h=">
<h2>Some dude</h2>
<p>Co-Owner</p>
</div>
<!-- End Second Staf Member -->
<!-- Third Staff Member -->
<div class="col-md staffblock">
<img width="100px;" src="https://mamaneedsahobby.files.wordpress.com/2013/09/steve-face.jpg?w=1000&h=">
<h2>Some dude</h2>
<p>Admin</p>
</div>
<!-- End Third Staff Member -->
</div>
<!-- End First Row Staff -->
<!-- Second Row Staff Member -->
<div class="row stafflist">
<!-- Fourth Staff Member -->
<div class="col-md staffblock">
<img width="100px;" src="https://mamaneedsahobby.files.wordpress.com/2013/09/steve-face.jpg?w=1000&h=">
<h2>Some dude</h2>
<p>Admin</p>
</div>
<!-- End Fourth Staff Member -->
<!-- Fifth Staff Member -->
<div class="col-md staffblock">
<img width="100px;" src="https://mamaneedsahobby.files.wordpress.com/2013/09/steve-face.jpg?w=1000&h=">
<h2>Some dude</h2>
<p>Moderator</p>
</div>
<!-- End Fifth Staff Member -->
<!-- Sixth Staff Member -->
<div class="col-md staffblock">
<img width="100px;" src="https://mamaneedsahobby.files.wordpress.com/2013/09/steve-face.jpg?w=1000&h=">
<h2>Some dude</h2>
<p>Moderator</p>
</div>
<!-- End Sixth Staf Member -->
</div>
<!-- End Second Row Staff -->
</section>
<!-- End Staff Section -->
<!-- Footer -->
<footer>
<div class="footer">
<div class="copyright-notice">
<!-- !! Replace this with your own domain !! -->
<p>yourdomain.com © | All rights reserved</p>
<!-- If you want to, you're allowed to delete these credits. But if you want to support my work, please leave it. -->
<p>Made with <font color="red">❤</font> by <a target="_blank" href="https://www.rickklaasboer.online/">Rick Klaasboer</a>.</font></p>
</div>
</div>
</footer>
<!-- End Footer -->
<!-- Smooth Scrolling Script (from https://goo.gl/uWLqWu) | Do not touch if you don't know what you're doing! -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script>
$(document).ready(function(){
// Add smooth scrolling to all links
$("a").on('click', function(event) {
// Make sure this.hash has a value before overriding default behavior
if (this.hash !== "") {
// Prevent default anchor click behavior
event.preventDefault();
// Store hash
var hash = this.hash;
// Using jQuery's animate() method to add smooth page scroll
// The optional number (800) specifies the number of milliseconds it takes to scroll to the specified area
$('html, body').animate({
scrollTop: $(hash).offset().top
}, 100, function(){
// Add hash (#) to URL when done scrolling (default click behavior)
window.location.hash = hash;
});
} // End if
});
});
</script>
<!-- End Smooth Scrolling Script -->
<script>
function myFunction() {
var x = document.getElementById("myTopnav");
if (x.className === "topnav") {
x.className += " responsive";
} else {
x.className = "topnav";
}
}
</script>
<script>
// When the user scrolls down 20px from the top of the document, show the button
window.onscroll = function() {scrollFunction()};
function scrollFunction() {
if (document.body.scrollTop > 20 || document.documentElement.scrollTop > 20) {
document.getElementById("myBtn").style.display = "block";
} else {
document.getElementById("myBtn").style.display = "none";
}
}
// When the user clicks on the button, scroll to the top of the document
function topFunction() {
document.body.scrollTop = 0;
document.documentElement.scrollTop = 0;
}
</script>
</body>
</html>