30 lines
No EOL
571 B
HTML
30 lines
No EOL
571 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>HTTP Test</title>
|
|
<style>
|
|
body {
|
|
color: white;
|
|
background-color: #151515;
|
|
font-family: sans-serif;
|
|
}
|
|
a {
|
|
color: #79d3ff;
|
|
}
|
|
a:visited {
|
|
color: #719bff;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<h1>Example website</h1>
|
|
<div style="padding-left:20px;">
|
|
<a href="./websocket">Websocket test</a><br>
|
|
<a href="./custom/foo/bar">Custom route</a><br>
|
|
<a href="./test">test.html</a><br>
|
|
<br>
|
|
<a href="./subpath/foo">Foo</a><br>
|
|
<a href="./subpath/bar">Bar</a><br>
|
|
</div>
|
|
</body>
|
|
</html> |