-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
91 lines (81 loc) · 2.45 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>/mmcg/</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<style>
table,
td,
th {
border: 1px solid #000;
text-align: left;
}
table {
border: 1px solid black;
border-collapse: collapse;
}
th,
td {
padding: 15px;
}
body {
margin: 0;
background-color: #f1f1f1;
}
.header {
grid-area: header;
background-color: #f1f1f1;
margin: auto;
width: 70%;
text-align: center;
font-size: 17px;
}
.content {
background-color: #ddd;
margin: auto;
width: 70%;
}
.footer {
background-color: #f1f1f1;
margin: auto;
padding: 15px 0px 0px 0px;
width: 70%;
}
</style>
</head>
<body>
<div class="header">
<h2>So you want to choose a modpack?</h2>
</div>
<div class="content">
<table style="width: 100%;">
<tr>
<th>Index</th>
</tr>
<tr>
<td>For a launcher guide click <a href="https://mmcg.neocities.org/launcher.html">here</a></td>
</tr>
<tr>
<td>For a modpack helper click <a href="https://mmcg.neocities.org/modpack.html">here</a></td>
</tr>
</table>
</div>
<div class="footer">
<div class="content">
<table style="width: 100%;">
<tr>
<th>Coming Soon</th>
</tr>
<tr>
<td>Full guide of installing PolyMC and PollyMC</td>
</tr>
<tr>
<td>Many more modpacks are to be added</td>
</tr>
</table>
<p>This website is open source, click <a href="https://github.com/anonymous-from-space/mmcg-website">here</a></p>
</div>
</div>
</body>
</html>