forked from ryancrosbyr/progblackpracticals
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAJs_webpage.html
More file actions
84 lines (79 loc) · 4.49 KB
/
AJs_webpage.html
File metadata and controls
84 lines (79 loc) · 4.49 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Minecraft</title>
<style>
div {
border:5px solid black;
background-color: #885500
}
body {
font-size:medium;
background-color: #9999ff;
color: #005500;
}
h1{
font-size:x-large;
background-color: #885500;
width: max-content;
color: #0f530f;
border: 5px solid black;
text-align: left;
font-family: Arial, sans-serif;
}
dt {
text-decoration: underline;
font-weight: bold;
margin-top: 10px;
font-size: large;
}
a{
color: #0f630f;
}
</style>
</head>
<body>
<h1>A Brief website on <b><a href = "https://www.minecraft.com/">MINECRAFT</a></b></h1>
<div>
<p>
Minecraft is a sandbox video game developed by Mojang studios in 2011.
It allows players to explore a blocky, procedurally-generated 3D world,
mine resources, craft items, and build structures.
Due to it's open-ended nature it has various modes available to keep players engaged including but not limited to:
</p>
<img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAMYAAACUCAMAAAD/A6aTAAAAflBMVEUdtTwAAAAHPiEfvD8HQCEcqzkgwUARZyQKSSIFDwwGOyActzsXkTQDLh0BLB0GDwkOWSAPWSgGIxUapDYMTRsDMx8AHRoKOxQCFAoUeCoLTSIWdi4AJRsAIxwWizIhyUIUZCcgqkEIKBcAABUAAAoJNBIYgzIFHAwTRSEegDclf9gfAAACgklEQVR4nO3cbXOiMBQFYAihWhH6olQXoXZta7f//w/WdWs/kEx6drxpYuacL+o4CTxcogjBLGMYhmEYhmEuM1Wo5RbFFRS4P6y7Qpgx11MksxLa0NXvFdSdmss6inkzQ/KAMgaou16cUWv1ffQAMsoe6q4RZlQYQ6XBEK6GSoORSDWCMXoRxuk9f4zZzOmAqzE4t8bpiU+GdqRBGY2jE3XaVD53qt21IznKyF297Pwz9H3uCsxw5V773ql+lHHp1fA+xFmN/2AkMsS5U8XEYDViYnCIx8TgTkWGOCORI9y0qnHpjLSqwbFBhhwjrSHOsREFI5FPqkTGhs9q6OOpbr1zM7D+vmPo46JULX0J8/H54V+GF+caZFvkcvc2c3byMnwu7PlR+sJ48RXn+k37uq6b+pjPh9HLvw/9dOvs5mtZgaYzXHXuyzindOh0hjAhI6aQEVPIiCkHBjQZJHpGi8yTaqeRM1b5DZB8FT0DChk/ETJiChkx5RIZlZktzLA0roL81qvKhZHsFWO8WtpiJ1XEU+y7u3Fu3zDGm9HyrtsLnz5AGRvLvPU1xlibLZtNIMav1jhy1SjDPA5uySCDDDL8MIyJ2TDDSDDG4XtDjT78Fci4acdNVbMJ9C0+sfzuxhR5fj1uuM4ngarxhK4zlkmYo95DNWQZgaohzggyOMgggwwyyCCDDDLIIIMMMsgggwwyyCCDDL+Mbomk+xM5Y1FCWUTOKK2TKMYpbDc+xMVAmlpvQyHjnJBBhnjIIEM8ZJAhHjLIEA8ZZIiHDDLEQwYZ4iGDDPFYpxOfwXgKNA93f2tkif15TVUuzbbvYRiV7VQ52victtI56wbEOG5eZDzkA90beoNGg7CpAAAAAElFTkSuQmCC", width=200px>
<dl>
<dt>Survival mode</dt>
<dd>Players must gather resources, manage hunger, and fend off hostile mobs to survive. and there are many playstyles such as:
<ul>
<li>Singplayer - building up your own resources and base</li>
<li>Multiplayer - playing with friends (known as an SMP)</li>
<li>Hardcore mode (permanent death)</li>
</ul>
</dd>
<dt>Creative mode</dt>
<dd>Players have unlimited resources and can fly, allowing them to focus on building and creating without any restrictions.</dd>
<dt>Adventure mode</dt>
<dd>Players can play custom maps and adventures created by other players with specific rules and objectives.</dd>
<dt>Modpacks</dt>
<dd>Players can install community-made modifications (mods) to add additional content, features and gameplay mechanics to the game. There are also many types of modpacks to cater for all communities
<ul>
<li>Tech mods - adding machines, power systems and automation</li>
<li>Magic mods - introducing spells, rituals and mystical creatures</li>
<li>Exploration mods - expanding the world with new biomes, dimensions and structures</li>
</ul>
</dd>
<dt>Servers</dt>
<dd>
Players can join multiplayer servers that host various game modes and mini-games, such as:
<ul>
<li>Skyblock - starting on a small floating island with limited resources</li>
<li>Factions - forming groups and competing for territory and resources</li>
<li>Minigames - participating in various mini-games like parkour, spleef (breaking blocks under an oponent to make them fall), and PvP battles</li>
</ul>
</dd>
</div>
</body>
</html>