-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
134 lines (114 loc) · 4.93 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
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
<!DOCTYPE html>
<html>
<head>
<title>NWTG HUB | Home</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="keywords" content="Minecraft,Mods,Home,NWTG,Hub">
<meta name="description" content="The official NWTG GitHub Website!">
<meta name="author" content="NorthWestTrees Gaming">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" type="image/png" href="files/img/favicons/nwtg-automation.png"/>
<link rel="stylesheet" href="files/css/defualt.css">
<link rel="stylesheet" href="files/css/styles.css">
<link rel="stylesheet" href="files/css/font.css">
<link rel="stylesheet" href="files/css/menu.css">
<link rel="stylesheet" href="files/css/aside.css">
<link rel="stylesheet" href="files/css/header.css">
<link rel="stylesheet" href="files/css/article.css">
<link rel="stylesheet" href="files/css/footer.css">
<script src="files/js/menu.js"></script>
</head>
<body class="background">
<!-- HEADER SECTION -->
<div class="col-12 col-s-12 header">
<div class="header-box">
<div class="header-content">
<h1>NWTG HUB</h1>
</div>
</div>
</div>
<!-- LEFT BAR SECTION -->
<div class="col-3 col-s-4 left-column">
<!-- MENU -->
<div class="menu">
<!-- SITE MENU -->
<div class="menu-box">
<div class="menu-titlebar" onclick="mainMenuButton()">
<h4 style="display:inline-block;">Site Menu</h4>
<h4 id="main-menu-button-1" style="display:inline-block; float:right;">▼</h4>
<h4 id="main-menu-button-2" style="display:none; float:right;">▲</h4>
</div>
<div id="main-menu-button-0" class="menu-content" style="display:none;">
<ul>
<li><a class="active" href="index.html">Home</a></li>
<li><a class="inactive" href="minecraft-mods.html">Minecraft Mods</a></li>
</ul>
</div>
</div>
</div>
<!-- LEFT ASIDE -->
<div class="aside-left hide-on-mobile hide-on-desktop show-on-tablet">
<div class="aside-box">
<div class="aside-titlebar"><h4>Official Sites</h4></div>
<div class="aside-content">
<ul>
<li style="text-align:left;"><a href="https://www.northwesttreesgaming.com">NorthWestTrees Gaming Website</a></li>
<li style="text-align:left;"><a href="https://mcreator.net/user/447058/northwesttrees-gaming">MCreator Profile</a></li>
<li style="text-align:left;"><a href="https://www.youtube.com/channel/UC8XYkALuEvGlKhza5Uyb7uQ">YouTube Channel</a></li>
</ul>
</div>
</div>
</div>
</div>
<!-- ARTICLE SECTION -->
<div class="col-6 col-s-8 article">
<div class="article-box">
<!-- ARTICLE TITLEBAR -->
<div class="article-titlebar">
<h2>Home</h2>
</div>
<!-- ARTICLE CONTENT -->
<div class="article-content">
<h3>Minecraft Modifications</h3>
<h4>NWTG Automation</h4>
<p>
Tired of having to do things manually in Minecraft?
Maybe you have bigger projects to work on then tending to your farm?
Or maybe you just wished that there was a faster way to craft some items? </br>
</br>
If that sounds like you, then you are in luck! </br>
NWTG Automations can automate crafting, farming, collecting, tree farm management and soon auto fishing.
It gets better! We are keeping the updates coming to add even more automatic machiens and new devices for you and your Minecraft worlds. </br>
</br>
<a href="mods/nwtg-automation.html">READ MORE</a>
</p>
</div>
</div>
</div>
<!-- RIGHT BAR SECTION -->
<div class="col-3 col-s-4 right-column">
<!-- RIGHT ASIDE -->
<div class="aside-right show-on-mobile show-on-desktop hide-on-tablet">
<div class="aside-box">
<div class="aside-titlebar"><h4>Official Sites</h4></div>
<div class="aside-content">
<ul>
<li style="text-align:left;"><a href="https://www.northwesttreesgaming.com">NorthWestTrees Gaming Website</a></li>
<li style="text-align:left;"><a href="https://mcreator.net/user/447058/northwesttrees-gaming">MCreator Profile</a></li>
<li style="text-align:left;"><a href="https://www.youtube.com/channel/UC8XYkALuEvGlKhza5Uyb7uQ">YouTube Channel</a></li>
</ul>
</div>
</div>
</div>
</div>
<!-- FOOTER SECTION -->
<div class="col-12 col-s-12 footer">
<div class="footer-box">
<div class="footer-content">
<p>Check out our other website <a href="https://www.northwesttreesgaming.com/">www.northwesttreesgaming.com</a></p>
</div>
</div>
</div>
</body>
</html>