-
Notifications
You must be signed in to change notification settings - Fork 0
/
Servers.html
51 lines (48 loc) · 1.2 KB
/
Servers.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
<!DOCTYPE html>
<html>
<head>
<title>Servers</title>
<link rel="stylesheet" type="text/css" href="css/style.css">
<link rel="shortcut icon" href="favicon.ico" />
</head>
<body>
<header>
<div class="main">
<div class="logo">
<img src="logo.png">
</div>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="Hedgehogs.html">Hedgehogs</a></li>
<li class="active"><a href="#">Servers</a></li>
</ul>
</div>
<div class="title">
<h1>SuperStarAn</h1>
</div>
<div class="button">
<a href="Blobby.html" class="btn">Play My Latest Game</a>
</div>
</header>
<div class="servers">
<table border="10" cellpadding="10" cellspacing="10">
<tr>
<th>IP</th>
<th>Name</th>
<th>Discription</th>
</tr>
<tr>
<td><a target="_blank" href="http://192.168.1.118:2009/">http://192.168.1.118:2009/</a></td>
<td>File Server</td>
<td>File backup and transfer.</td>
</tr>
<tr>
<td><a target="_blank" href="http://192.168.1.118:8080/">http://192.168.1.118:8080/</a></td>
<td>Main Website</td>
<td>Storage and info.</td>
</tr>
</table>
</div>
<br><br><br>
</body>
</html>