-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
65 lines (53 loc) · 3.03 KB
/
index.html
File metadata and controls
65 lines (53 loc) · 3.03 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>UnityCraft</title>
<link rel="shortcut icon" href="favicon.ico">
<link rel="stylesheet" href="css/style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Alfa+Slab+One&family=Amatic+SC&display=swap" rel="stylesheet">
<script src="https://kit.fontawesome.com/368316ed36.js" crossorigin="anonymous"></script>
</head>
<body>
<h1><span id="title-unity">UNITY</span> <span id="title-craft">Craft</span></h1>
<p>Notch's MINICRAFT with cross-platform multiplayer!</p>
<!-- Browser version -->
<a href="game.html" class="main-button">Play in browser</a>
<!-- Android download -->
<a href="https://github.com/maxkratt/unitycraft/releases/download/v0.0.1/unitycraft_v0.0.1_android.zip" download class="main-button"><i class="fa-brands fa-android"></i> Android</a>
<!-- Windows downloads -->
<div class="dropdown">
<button class="main-button">Windows | <i class="fa-solid fa-caret-down"></i></button>
<div class="dropdown-content">
<a href="https://github.com/maxkratt/unitycraft/releases/download/v0.0.1/unitycraft_v0.0.1_x86_64_windows.zip" download><i class="fa-brands fa-windows"></i> Game x64</a>
<a href="https://github.com/maxkratt/unitycraft/releases/download/v0.0.1/unitycraft_v0.0.1_x86_windows.zip" download><i class="fa-brands fa-windows"></i> Game x86</a>
<div class="dropdown-content-last">
<a href="https://github.com/maxkratt/unitycraft/releases/download/v0.0.1/unitycraft_v0.0.1_server_windows.zip" download><i class="fa-solid fa-server"></i> Server</a>
</div>
</div>
</div>
<!-- Linux downloads -->
<div class="dropdown">
<button class="main-button">Linux | <i class="fa-solid fa-caret-down"></i></button>
<div class="dropdown-content">
<a href="https://github.com/maxkratt/unitycraft/releases/download/v0.0.1/unitycraft_v0.0.1_linux.tar.gz" download><i class="fa-brands fa-linux"></i> Game</a>
<div class="dropdown-content-last">
<a href="https://github.com/maxkratt/unitycraft/releases/download/v0.0.1/unitycraft_v0.0.1_server_linux.tar.gz" download><i class="fa-solid fa-server"></i> Server</a>
</div>
</div>
</div>
<hr>
<div class="poster">
<img src="images/unitycraft-image.png" class="poster-image">
</div>
<div class="footer">
<p class="footer-text">Credits:</p>
<p class="footer-text">Markus "Notch" Persson - Unity Game Engine - FishNet Multiplayer
Networking - FastNoise Lite - RetroSuite3D - ParrelSync - SpriteLightKit - Max Kratt</p>
</div>
</body>
</html>