30 lines
693 B
HTML
30 lines
693 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Live Test Overlay</title>
|
|
<style>
|
|
body {
|
|
background-color: black;
|
|
color: white;
|
|
font-family: sans-serif;
|
|
margin: 0;
|
|
padding: 20px;
|
|
}
|
|
.message {
|
|
margin-bottom: 10px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<h1>Live Test Overlay</h1>
|
|
<div id="chat-messages">
|
|
<!-- Messages will appear here -->
|
|
</div>
|
|
|
|
<script>
|
|
// JavaScript to connect to WebSocket and display messages will go here
|
|
</script>
|
|
</body>
|
|
</html> |