-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
38 lines (35 loc) · 1.23 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>172.17.15.57 - Kaamera</title>
<link rel="stylesheet" href="css/style.css">
<script src="js/script.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
</head>
<body onload="startFunctions()">
<div id="wrapper">
<div id="left">
<p id="clock"></p>
<p id="ip">IP: 172.17.15.141</p>
</div>
<div id="middle">
<img id="jpgFromCamera" src="http://172.17.15.57/jpg/image.jpg"/>
</div>
<div id="right">
<p id="city"></p>
<p id="celsius"></p>
<p id="feelslike"></p>
<h3 id="corona-worldwide">Koroonaviirus maailmas</h3>
<p id="covid19-worldwide-confirmed"></p>
<p id="covid19-worldwide-recovered"></p>
<p id="covid19-worldwide-dead"></p>
<h3 id="corona-custom">Koroonaviirus Eestis</h3>
<p id="covid19-custom-confirmed"></p>
<p id="covid19-custom-recovered"></p>
<p id="covid19-custom-dead"></p>
</div>
</div>
</body>
</html>