-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathModded.html
106 lines (101 loc) · 3.23 KB
/
Modded.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>The Gaming Crib</title>
<link rel="canonical">
<link rel="icon" type="image/png" href="/favicon-96x96.png" sizes="96x96" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<link rel="shortcut icon" href="/favicon.ico" />
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png" />
<meta name="apple-mobile-web-app-title" content="MyWebSite" />
<link rel="manifest" href="/site.webmanifest" />
<style>
body {
font-family: 'Minecraft', sans-serif;
margin: 0;
padding: 0;
background-color: #b2e0b2;/* Light green background */
background-image: url('Background.jpg');/* Light green background */
background-attachment: fixed;
color: #333;
}
@font-face {
font-family: 'Minecraft';
src: url('https://fonts.cdnfonts.com/s/15573/Minecraft.ttf'); /* Link to a Minecraft-style font */
}
header {
background: #3c6e3c; /* Dark green header */
color: #fff;
padding: 20px 0;
text-align: center;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
nav {
margin: 20px 0;
}
nav a {
margin: 0 15px;
color: #fff;
text-decoration: none;
font-weight: bold;
}
nav a:hover {
text-decoration: underline;
}
.container {
width: 80%;
margin: auto;
overflow: hidden;
}
footer {
text-align: center;
padding: 10px 0;
background: #3c6e3c;
color: #fff;
position: relative;
bottom: 0;
width: 100%;
}
.content {
background: #fff;
padding: 20px;
border-radius: 5px;
box-shadow: 0 0 10px rgba(0,0,0,0.2);
margin: 20px 0;
}
h2 {
color: #5a5a5a;
}
ul {
list-style-type: square;
}
</style>
</head>
<body>
<header>
<h1>The Gaming Crib</h1>
<nav>
<a href="index.html">Home</a>
<a href="https://discord.gg/abMAuQZ8rr">Discord</a>
<a href="Voting.html">Voting</a>
</nav>
</header>
<div class="container">
<div class="content" id="vote">
<h2><u>How to join the Moded SMP</u></h2>
<h3>Hi here is a step by step prosess how to join the modded server</h3>
<hr/>
<h3>First you must download the modpack at: <a href="https://www.curseforge.com/minecraft/modpacks/the-gaming-crib">Curseforge.com/The Gaming Crib</a></h3>
<img src="Curseforge-Download.jpg" width="500" height="250">
<br/>
<h3>Then you go to the servers list and hit the add server button</h3>
<img src="Add-Server.JPG" width="500" height="250">
<br/>
<h3>now you put the server name you want, and the server ip</h3>
<img src="Server-Modded.png" width="500" height="250">
</div>
</div>
</body>
</html>