33 lines
793 B
HTML
33 lines
793 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<script src="https://cdn.plot.ly/plotly-latest.min.js" charset="utf-8"></script>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<link rel="stylesheet" href="styles.css">
|
|
<title>Node dev page</title>
|
|
<!-- <link rel="icon" type="image/x-icon" href="favicon.ico"> -->
|
|
</head>
|
|
|
|
<body>
|
|
<!-- Make a new header with a navigation bar -->
|
|
<header>
|
|
<nav class="navbar">
|
|
<ul>
|
|
<li><a href="climate-monitor.html">Dashboard
|
|
</a></li>
|
|
<li><a href="Map.html">Graph</a></li>
|
|
</li>
|
|
</ul>
|
|
</nav>
|
|
</header>
|
|
|
|
<div id="nodeDataLocation"></div>
|
|
|
|
<!-- Include the js file -->
|
|
<script src="classes.js"></script>
|
|
<script src="main.js"></script>
|
|
</body>
|
|
|
|
<html> |