-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
88 lines (85 loc) · 2.54 KB
/
index.html
File metadata and controls
88 lines (85 loc) · 2.54 KB
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<link rel="stylesheet" href="src/css/style.css" />
<link
rel="stylesheet"
href="https://use.fontawesome.com/releases/v5.8.2/css/all.css"
integrity="sha384-oS3vJWv+0UjzBfQzYUhtDYW+Pj2yciDJxpsK1OYPAYjqT085Qq/1cq5FLXAZQ7Ay"
crossorigin="anonymous"
/>
<link
href="https://fonts.googleapis.com/css?family=Lato&display=swap"
rel="stylesheet"
/>
<title>My day</title>
</head>
<body>
<div id="mainContainer">
<h1 id="currentPageTitle">My Day</h1>
<div id="svgAnimation"></div>
<div id="dateAndTimeContainer">
<ul id="date_elements">
<li><i class="far fa-calendar-check"></i></li>
<li>Today is:</li>
<li><p id="currentWeekday"></p></li>
<li><p id="currentDayNumber"></p></li>
<li><p id="showCurrentMonth"></p></li>
<li><p id="currentYear"></p></li>
</ul>
<ul>
<li><i class="far fa-clock"></i></li>
<li><p id="currentTime"></p></li>
</ul>
</div>
<div id="taskContainer">
<h2>My tasks for today:</h2>
<main></main>
<button class="musicButton" id="playButton" onmousedown="audio.play()">
<i class="fas fa-play"></i>
</button>
<button
class="musicButton hidden"
id="pauseButton"
onmousedown="audio.pause()"
>
<i class="fas fa-pause"></i>
</button>
<template id="tasksTemplate">
<table>
<tr>
<td id="timeTable">08:00</td>
<td id="taskTable"></td>
</tr>
</table>
</template>
</div>
<div id="backgroundColorContainer">
<label for="colorPicker">Change the page background color:</label>
<br />
<br />
<input id="colorPicker" type="color" name="head" value="#e66465" />
</div>
<div id="pageTitleContainer">
<label for="newTitle">Do you want to change the webpage title?</label>
<br />
<br />
<input
type="text"
id="newTitle"
required
minlength="3"
maxlength="50"
size="10"
/>
<br />
<br />
<button id="newTitleButton">Yes, change !</button>
</div>
</div>
<script src="src/js/script.js"></script>
</body>
</html>