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

26 lines
590 B
HTML
Raw Normal View History

2024-04-11 06:58:46 +00:00
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Websocket Server EX</title>
<style>
2024-04-11 17:19:01 +00:00
#log {
width: 500px;
2024-04-11 06:58:46 +00:00
height: 500px;
2024-04-11 17:19:01 +00:00
font: 10pt Ubuntu;
2024-04-11 06:58:46 +00:00
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>
2024-04-11 17:19:01 +00:00
<script src="jquery-3.3.1.js"></script>
<script src="tempbat.js"></script>
2024-04-11 06:58:46 +00:00
</body>
</html>