-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjava.html
138 lines (128 loc) · 6.14 KB
/
java.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
<!DOCTYPE html>
<!-- JAVA -->
<html lang="en">
<head>
<meta charset="UTF-8">
<!-- BOOTSTRAP -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
rel="stylesheet" integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC"
crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM"
crossorigin="anonymous"></script>
<!-- CSS -->
<link href="styles.css" rel="stylesheet">
<title>Minecraft P-SET 8 | Java</title>
<link rel="icon" type="image/png" href="images/logos/grass.png">
<meta name="theme-color" content="#8bb0fb">
<!-- FOR MOBILE RESPONSIVENESS -->
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<!-- JAVASCRIPT -->
<script src="script.js"></script>
<!-- MAIN SQUARE -->
<div id="main-square">
<!-- NAVBAR -->
<nav>
<!--
STEVE ON TOP OF NAVBAR
IT'S INSIDE <NAV> BECAUSE HE NEEDS TO BE BETWEEN NAV WIDTH
-->
<img alt="Steve Character" id="steve" height="32" width="24" src="images/steve/0.png">
<!--
WASD BUTTONS ON RIGHT SIDE
IT'S INSIDE <NAV> WITHOUT REASON
-->
<div id="wasd">
<p>Try in your keyboard:</p>
<button type="button" id="w" disabled>w</button><br>
<button type="button" id="a">a</button>
<button type="button" id="s" disabled>s</button>
<button type="button" id="d">d</button>
</div>
<!-- STUFF INSIDE NAVBAR -->
<div id="nav-space">
<!-- MINECRAFT LOGO ON LEFT SIDE -->
<a id="logo" href="index.html"><img alt="Minecraft Logo" width="200" src="images/logos/minecraft.svg"></a>
<!-- MENU OPTIONS ON RIGHT SIDE-->
<ul id="menu">
<li><a class="pag" href="index.html">Home</a></li>
<li><a class="pag" href="#">Java</a></li>
<li><a class="pag" href="bedrock.html">Bedrock</a></li>
<li><a class="pag" href="about.html">About</a></li>
</ul>
</div>
</nav>
<!-- CONTENT -->
<article>
<h1>Java</h1>
<section>
<h2 class="title">The original Minecraft</h2>
<p>
The Java version of Minecraft is the original edition of the game,
<a href="https://www.imdb.com/title/tt2011970/releaseinfo/"
target="_blank">released in November 18, 2011</a> by Notch. Even
though now it is developed and maintained by Mojang Studios a part
of Xbox Game Studios, which in turn is part of Microsoft. It is
available to Windows, Mac and Linux and has some unique features
that are not present in other editions of the game, such as:
</p>
<!-- FROM BOOTSTRAP -->
<div class="accordion" id="accordion-java">
<div class="accordion-item">
<h2 class="accordion-header" id="headingOne">
<button class="accordion-button" type="button" data-bs-toggle="collapse" data-bs-target="#collapseOne" aria-expanded="true" aria-controls="collapseOne">
Support to shaders.
</button>
</h2>
<div id="collapseOne" class="accordion-collapse collapse show" aria-labelledby="headingOne" data-bs-parent="#accordion-java">
<div class="accordion-body">
<img alt="Minecraft Shaders Picture" height="400" width="711" src="images/photos/shaders.jpg">
</div>
</div>
</div>
<div class="accordion-item">
<h2 class="accordion-header" id="headingTwo">
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse" data-bs-target="#collapseTwo" aria-expanded="false" aria-controls="collapseTwo">
Way better support to mods (modifications).
</button>
</h2>
<div id="collapseTwo" class="accordion-collapse collapse" aria-labelledby="headingTwo" data-bs-parent="#accordion-java">
<div class="accordion-body">
<img alt="Minecraft Mods Picture" height="400" width="711" src="images/photos/mods.jpg">
</div>
</div>
</div>
<div class="accordion-item">
<h2 class="accordion-header" id="headingThree">
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse" data-bs-target="#collapseThree" aria-expanded="false" aria-controls="collapseThree">
Better servers and snapshots (beta versions).
</button>
</h2>
<div id="collapseThree" class="accordion-collapse collapse" aria-labelledby="headingThree" data-bs-parent="#accordion-java">
<div class="accordion-body">
<img alt="Minecraft Server Picture" height="400" width="711" src="images/photos/server.jpg">
</div>
</div>
</div>
</div>
</section>
<section>
<h2 class="title">How can I play</h2>
<p>
To play the Java version of Minecraft you need to download and
install the game on your computer. You can do it through
<a href="https://www.minecraft.net/"
target="_blank">official Minecraft website</a> or other options
alternatives. You can also buy the
<a href="https://www.microsoft.com/store/productId/9NXP44L49SHJ"
target="_blank">package</a> that includes the Java version and the Bedrock
version (the unified edition of cross-platform game) for Windows.
</p>
</section>
</article>
<footer>Problem Set 8 - Homepage [CS50] - <a id="to-top" href="#">Return to top</a></footer>
</div>
</body>
</html>