-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
19 lines (17 loc) · 845 Bytes
/
index.html
File metadata and controls
19 lines (17 loc) · 845 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<!DOCTYPE html> <!-- HTML5 -->
<html lang="english">
<head>
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no"> <!-- "target-densitydpi=device-dpi" is not supported, but fixed a scaling bug... (, viewport-fit=cover) --> <!-- , viewport-fit=cover, target-densitydpi=medium-dpi -->
<meta name="description" content="Weather Station app main screen.">
<title>Weather Station</title>
<link rel="stylesheet" type="text/css" href="index.css">
<!-- <link rel="icon" href="favicon.png"> -->
<script language="javascript" type="text/javascript" src="script/main.js"></script>
</head>
<body>
<div id="graph"></div>
<canvas id="screen">No canvas support...</canvas>
<div class="bottom-right">Weerdata van <a href="buienradar.nl">buienradar.nl</a></div>
</body>
</html>