-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
28 lines (28 loc) · 884 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
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<title>SBB Clock</title>
<link rel="stylesheet" href="style.css"/>
</head>
<body>
<div class="demo-container clocks single">
<article class="clock station show linear bounce">
<div class="hours-container" id="hours-container">
<div class="hours"></div>
</div>
<div class="minutes-container" id="minutes-container">
<div class="minutes"></div>
</div>
<div class="seconds-container" id="seconds-container">
<div class="seconds"></div>
</div>
</article>
</div>
<footer>
Made by <a href="http://meister.io">meister.io</a> | CSS by <a href="https://cssanimation.rocks/">cssanimation.rocks</a><br/>
Design by Hans Hilfiker | © by Mondaine & SBB CFF FFS
</footer>
<script src="script.js"></script>
</body>
</html>