-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
58 lines (51 loc) · 948 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
body {
font-family: Arial, Helvetica, sans-serif;
background: linear-gradient(55deg, #05b991 0%, #3670c9 85%);
height: 1000px;
}
* {
box-sizing: border-box;
}
.row {
border-radius: 10px;
opacity: 0.75;
background-color: white;
padding: 10px;
}
/* Create two unequal columns that floats next to each other */
.column {
float: left;
}
.right {
width: 30%;
}
.left {
width: 70%;
}
/* Clear floats after the columns */
.row:after {
content: "";
display: table;
clear: both;
}
</style>
</head>
<body>
<div class="row">
<h1>Edgerburg</h1>
<div class="column left">
<h2>About the server</h2>
<p>Edgerburg is a SMP server. It also accepts minigames for users to play on!</p>
</div>
<div class="column right">
<h2>IP</h2>
<code>edgerburg.aternos.me</code>
</div>
</div>
</body>
</html>