-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
124 lines (117 loc) · 5.03 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
<!DOCTYPE html>
<html lang="en">
<!-- Do not steal, source code is cursed. You might encounter compiler errors when you steal this!!!!
If you want to steal, go to github, this isn't too good for stealing
**IF YOU SEE AN ERROR, GO MAKE A PULL REQUEST**
-->
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Welcome to Cubyz</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<nav>
<div class="banner">
<img src="assets/images/green_purple_crystals.png" alt="">
<div>
<img class="logo" src="assets/textures/pixelguys.png" alt="">
<a href="index.html">Home</a>
<a href="">Features (no page)</a>
<!-- Go add a page i guess? -->
<a href="information.html">Information</a>
</div>
<p id="modt-text">
"Why is nothing here?" - you (probably)
</p>
</div>
</nav>
<main>
<p style="text-align: center;"> <!--Change the "text-align: center" to "display none" if you want it gone.-->
Embark on an thrilling journey across vast landscapes, <br>exploring the deepest of caves <br>unseen by
daylight.
Discover ancient minerals, untouched by time, <br>as you discover more in this forgotten
<br>world.
</p>
<div class="flexbox">
<div class="container">
<p class="title">
Free and Open Source
</p>
<p>
You can also become a contributor and make miracles in Cubyz's development.<br>
<button onclick="window.location.href='https://github.com/PixelGuys/Cubyz'">Github</button><button
onclick="window.location.href='https://github.com/PixelGuys/Cubyz/issues'">Issues</button><button
onclick="window.location.href='https://github.com/PixelGuys/Cubyz/wiki/Addons'">Make
Addons</button>
</p>
</div>
<div class="container">
<p class="title">
Installation in Four Clicks
</p>
<p>
The guide can be found <a href="https://github.com/PixelGuys/Cubyz/blob/master/README.md">here</a>.
</p>
</div>
</div>
<div class="container">
<p class="title">
Features
</p>
<p>
Cubyz is a limitless indie game which uses voxels as a base, but don't think that's all! We have a
ton of our own features. If you want your own features, you can expand the game with addons. <br><br>
TL;DR: Like a similar cube game, but with more possibilities. <br><br>
- No height limit <br>
- No depth limit <br>
- Farther render distances <br>
- Immersive fog of all colors <br>
- Crystals of all colors <br>
- Colored glass that filters light <br>
- Mod and addon friendly
</p>
</div>
<div class="container">
<p class="title">
Some screenshots
</p>
<div class="images">
<img src="assets/images/colorful_crystals.png" alt="">
<img src="assets/images/treetops.png" alt="">
<img src="assets/images/icymountain.png" alt="">
<img src="assets/images/green_crystals.png" alt="">
<img src="assets/images/island.png" alt="">
</div>
</div>
</main>
<div id="popup" style="display: none;">
<div id="popup-background"></div>
<div id="agree-popup">
<p class="title">Cookie preferences</p>
<p>
To use this feature, please allow this webpage to collect cookies. This allows the website to save
preferences. We do not share information to any company.<br><br>Do you want to enable cookies on this
page?<br>
<button onclick="allowCookies()">Yes</button>
<button onclick="disallowCookies()">No, take me back</button>
<!-- Change this urself next time pls -->
<!-- Go to the cookie.js file to change cookie behavour -->
</p>
</div>
</div>
<footer>
<div>
<a href="?">Legal</a>
<a href="?">Guidelines</a>
<a href="https://github.com/pixelguys/Cubyz">Github</a>
<a href="https://www.youtube.com/@quantumdeveloper2733">Youtube</a>
<a href="https://discord.gg/XtqCRRG">Discord</a>
</div>
</footer>
<script src="scripts/index.js"></script>
<script src="scripts/motd_randomiser.js"></script>
<script src="scripts/cookie.js"></script>
<!-- This file adds cookie functionality, removing this is stupid and i sugest just leaving it it-->
</body>
</html>