34 lines
911 B
HTML
34 lines
911 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Temperature-Alarm-Web</title>
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/2.9.4/Chart.js"></script>
|
|
</head>
|
|
<body>
|
|
<div class="topnav">
|
|
<a class="active" href="#home">Home</a>
|
|
<a href="#news">News</a>
|
|
<a href="#contact">Contact</a>
|
|
<a href="#about">About</a>
|
|
</div>
|
|
|
|
<canvas id="myChart" style="width:100%;width: 100vw;"></canvas>
|
|
|
|
<table>
|
|
<tr>
|
|
<th>Name</th>
|
|
<th>Temperature</th>
|
|
<th>Date</th>
|
|
<th>TempHigh</th>
|
|
<th>TempLow</th>
|
|
</tr>
|
|
<tbody id="TemperatureTable">
|
|
|
|
</tbody>
|
|
</table>
|
|
</body>
|
|
<link rel="stylesheet" href="home.css">
|
|
<script type="module" src="home.js"></script>
|
|
</html> |