forked from McTrees/remote-Minecraft
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
55 lines (44 loc) · 1.64 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
<!DOCTYPE html>
<html>
<title>W3.CSS Template</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<link rel="stylesheet" href="https://www.w3schools.com/lib/w3-theme-black.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.3.0/css/font-awesome.min.css">
<body>
<!-- Header -->
<header class="w3-container w3-blue w3-padding" id="myHeader">
<div class="w3-center">
<h4>McTrees</h4>
<h1 class="w3-xxxlarge w3-animate-bottom">Remote Minecraft server monitor</h1>
</div>
</header>
<div class="w3-row-padding w3-center w3-margin-top">
<div class="w3-quarter w3-hover-opacity">
<div class="w3-card w3-container" style="min-height:460px">
<h3>Restart</h3><br>
<i class="fa fa-repeat w3-margin-bottom w3-text-blue" style="font-size:120px"></i>
</div>
</div>
<div class="w3-quarter w3-hover-opacity">
<div class="w3-card w3-container" style="min-height:460px">
<h3>Stop</h3><br>
<i class="fa fa-ban w3-margin-bottom w3-text-blue" style="font-size:120px"></i>
</div>
</div>
<div class="w3-quarter w3-hover-opacity">
<div class="w3-card w3-container" style="min-height:460px">
<h3>Start</h3><br>
<i class="fa fa-play w3-margin-bottom w3-text-blue" style="font-size:120px"></i>
</div>
</div>
<div class="w3-quarter w3-hover-opacity">
<div class="w3-card w3-container" style="min-height:460px">
<h3>Backup</h3><br>
<i class="fa fa-floppy-o w3-margin-bottom w3-text-blue" style="font-size:120px"></i>
</div>
</div>
</div>
</body>
</html>