-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
56 lines (56 loc) · 1.32 KB
/
index.html
File metadata and controls
56 lines (56 loc) · 1.32 KB
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
<html>
<head>
<title>NoNameSkyBlock Development WebSite</title>
<style>
.button {
display: inline-block;
border-style: solid;
color: black;
background-color: rgb(225, 224, 224);
border-width:1px;
border-color: darkgray;
text-decoration: none;
}
.title-main {
font-size: 40px;
text-align: center;
color: green;
}
.title-sub {
font-size: 30px;
text-align: center;
}
.border-box{
padding: 5px 5px 5px 5px;
width: 0.5em;
border: solid 3px #000;
}
.list-title {
font-size: 25px;
margin: 10px 5px 10px 90px;
}
li.list-column {
width: fit-content;
font-size: 20px;
margin: 10px 5px 10px 100px;
}
footer {
margin: 100px 5px 10px 5px;
text-align: center;
font-size: 10px;
}
</style>
</head>
<body>
<h1 class="title-main">No Name Sky Block Development Website</h1>
<h2 class="title-sub">Applications for No Name Sky Block.</h2>
<ul>
<h3 class="list-title">Created Applications List</h3>
<li class="list-column"><a class="button" href="https://nnsbdev.f5.si/mccoord-calc/">Minecraft Coord Calculator</a> : Overworld and Nether Coord Calculator</li>
<li class="list-column">Creating now...</li>
</ul>
<footer>
<h2>Developed by sysnote8main</h2>
</footer>
</body>
</html>