-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
57 lines (52 loc) · 1.35 KB
/
index.html
File metadata and controls
57 lines (52 loc) · 1.35 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
<!DOCTYPE html>
<html>
<head>
<title>calendar</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" type="text/css" href="style.css" />
<link rel="stylesheet" type="text/css" href="style_input.css" />
</head>
<body>
<header>
<p>Color</p>
<input
type="range"
id="nr"
min="0"
max="360"
value="240"
step="2"
class="myRange"
oninput="catchColor()"
name=""
/>
<div class="theme">
<label for="blackTheme">Black Theme</label>
<input
type="checkbox"
id="blackTheme"
name="blackTheme"
value="black"
onchange="changeTheme()"
/>
</div>
</header>
<div class="month-prev">
<h3 class="nameMonth showDatePrev"></h3>
<div class="month-prev__dates"></div>
</div>
<div class="month-current">
<h3 class="nameMonth showDateNow"></h3>
<div class="month-current__dates"></div>
</div>
<div class="month-next">
<h3 class="nameMonth showDateNext"></h3>
<div class="month-next__dates"></div>
</div>
<footer>
<button class="btn-today">Go on Today</button>
</footer>
<script type="text/javascript" src="script.js"></script>
</body>
</html>