Uwaa/HTTP.Example/www-static/index.htm
2024-11-22 06:40:43 +00:00

30 lines
No EOL
570 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.htm</a><br>
<br>
<a href="./subpath/foo">Foo</a><br>
<a href="./subpath/bar">Bar</a><br>
</div>
</body>
</html>