-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
41 lines (38 loc) · 1.48 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
39
40
41
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Presentation timer.">
<meta name="author" content="Marko Rillo">
<title>Presentation timer</title>
<link href="https://fonts.googleapis.com/css?family=Roboto&display=swap" rel="stylesheet">
<link rel="stylesheet" href="css/style.css">
<script
src="https://code.jquery.com/jquery-3.6.1.min.js"
integrity="sha256-o88AwQnZB+VDvE9tvIXrMQaPlFFSUTR+nldQm1LuPXQ="
crossorigin="anonymous"></script>
<script defer src="js/app.js"></script>
</head>
<body>
<div id="container">
<div id="headerbox">Presentation timer</div>
<div id="mainbox">5:00</div>
<div id="footerbox">
<div id="propertybox">
<button class="tedbutton" id="colorButton">Color</button>
<button class="tedbutton" id="fontButton">Round</button>
<button class="tedbutton" id="resetTimerButton">Reset</button>
<button class="tedbutton" id="playPauseToggleButton">Play</button>
</div>
<div id="timebox">
<div class="smalltime" id="time">Time</div>
<div class="smalltime" id="weekday">Day</div>
<div class="smalltime" id="date">Date</div>
<div class="smalltime" id="month">Month</div>
<div class="smalltime" id="year">Year</div>
</div>
</div>
</div>
</body>
</html>