-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
34 lines (30 loc) · 1.07 KB
/
index.html
File metadata and controls
34 lines (30 loc) · 1.07 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>MCSC</title>
<link rel="stylesheet" href="style.css">
<link rel="icon" type="image/x-icon" href="favicon.png">
</head>
<body>
<div class="output_container">
<input class="search_input" type="text" id="search">
<button class="search_button" id="outputButton">Search</button>
<img src="favicon.png" width=100 height=100 class="logo">
<p>!LOADING CAN TAKE UP SOME TIME!</p>
<br>
<img class="output_icon" id="output_icon">
<p class="output_text" id ="output_hostname"></p>
<p class="output_text" id="output_online"></p>
<p class="output_text" id="output_ip"></p>
<p class="output_text" id="output_port"></p>
<p class="output_text" id="output_software"></p>
<p class="output_text" id="output_version"></p>
<p class="output_text" id="output_players_max"></p>
<p class="output_text" id="output_players_online"></p>
<p class="output_text">MOTD:</p>
<p class="output_motd" id="output_motd"></p>
</div>
<script src="script.js"></script>
</body>
</html>