25 lines
583 B
HTML
25 lines
583 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Service List</title>
|
|
</head>
|
|
<body>
|
|
<h1>Service List</h1>
|
|
<table border="solid">
|
|
<thead>
|
|
<tr>
|
|
<th>Service</th>
|
|
<th>URL</th>
|
|
<th>IP</th>
|
|
<th>Comment</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<!--Placeholder-->
|
|
</tbody>
|
|
</table>
|
|
</body>
|
|
</html> |