Uwaa/HTTP.Example/www-static/index.html

30 lines
571 B
HTML
Raw Normal View History

2024-11-22 07:40:43 +01:00
<!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>
2024-12-25 23:14:53 +01:00
<a href="./test">test.html</a><br>
2024-11-22 07:40:43 +01:00
<br>
<a href="./subpath/foo">Foo</a><br>
<a href="./subpath/bar">Bar</a><br>
</div>
</body>
</html>