-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
33 lines (30 loc) · 879 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="./assets/css/style.css">
</head>
<body>
<main>
<div class="clockButton">
<div id="clockContainer">
<div id="time">
<p id="stunde">03</p>
<p>:</p>
<p id="minute">31</p>
<p>:</p>
<p id="sekunde">27</p>
<div>
<p id="tag">Fri</p>
<p id="period">XX</p>
</div>
</div>
</div>
</div>
</main>
<script src="./assets/js/main.js"></script>
</body>
</html>