-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathkello.html
33 lines (30 loc) · 988 Bytes
/
kello.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>
<head>
<link rel="stylesheet" href="main.css">
<script src="main.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<link href="https://fonts.googleapis.com/css?family=Lato:400,700,900" rel="stylesheet">
<style id="myStyle">
.button:hover {
color: var(--main_color)
}
</style>
</head>
<body onload="displayTime();">
<img style="opacity: 0" class="bg" src=""></img>
<div id="player"></div>
<div class="container background1">
</div>
<div class="container background2">
</div>
<div class="container">
<div class="clock_container">
<div class="maincontent">
<span id="time">05:00</span><br>
<button class="button button_fullscreen" type="button" onclick="launchIntoFullscreen(document.documentElement)">Fullscreen</submit>
</div>
</div>
</div>
</body>
</html>