-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
41 lines (37 loc) · 970 Bytes
/
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
39
40
41
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<link rel="stylesheet" href="main.css">
<title>Paternoster</title>
<script src="https://code.jquery.com/jquery-1.10.2.js"></script>
</head>
<body display="flex">
<header class="header">
<div id="title">
Pflanzen Paternoster
</div>
<div class="buttons">
edit
</div>
<div class="buttons">
<span id="datetime"></span>
</div>
<div class="buttons">
GHI
</div>
</header>
<div class="container">
<ul class="item">
<li>
Meow
</li>
</ul>
<canvas class="item" id="paternoster">
</canvas>
<span class="item" id="selected"></span>
</div>
<script src="main.js"></script>
</body>
</html>