1
0
This repository has been archived on 2024-10-30. You can view files and clone it, but cannot push or open issues or pull requests.
SDI-WebSocket-Exercise/tempbat.html
2024-04-11 08:58:46 +02:00

27 lines
609 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Websocket Server EX</title>
<script src="jquery-3.3.1.js"></script>
<script>
</script>
<style>
#log
{
width: 200px;
height: 500px;
font: courier;
font-size: 8;
background:lightblue;
}
</style>
</head>
<body>
<textarea id="log" readonly></textarea><br/>
<button id="temp">Temp</button>
<button id="bat">Bat</button>
<button id="discon">Disconnect</button>
</body>
</html>