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

28 lines
No EOL
517 B
HTML

<!DOCTYPE html>
<html>
<head>
<title>HTTP Test</title>
<style>
body {
color: white;
background-color: #151515;
font-family: sans-serif;
}
#log {
color: #afc3ff;
background-color: #2a2d35;
font-family: monospace,monospace;
padding: 10px;
border-radius: 5px;
border: solid white 1px;
width: fit-content;
min-width: 300px;
}
</style>
</head>
<body>
<h1>Websocket test</h1>
<div id="log"></div>
<script src="./websocket.js"></script>
</body>
</html>