-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfinal.html
More file actions
78 lines (59 loc) · 4.19 KB
/
final.html
File metadata and controls
78 lines (59 loc) · 4.19 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"
integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/popper.js@1.16.0/dist/umd/popper.min.js"
integrity="sha384-Q6E9RHvbIyZFJoft+2mJbHaEWldlvI9IOYy5n3zV9zzTtmI3UksdQRVvoxMfooAo" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/js/bootstrap.min.js"
integrity="sha384-OgVRvuATP1z7JjHLkuOU7Xw704+h835Lr+6QL9UvYjZE3Ipu6Tp75j7Bh/kR0JKI" crossorigin="anonymous"></script>
<title>My Daily Plan</title>
<link rel="stylesheet" href="template.css">
</head>
<body>
<div style='background-size: cover;background-color:#577399;'>
<div style='width:200px;height:20px;'></div>
<div class='center'; style='width:690px;height:1500px;background-color:#bdd5ea'>
<h1 style="color: #495867;font-size: 100px;margin-left: 30px;">My Daily Plan</h1>
<h1 class="h">08 - 10<br>10 - 12<br>12 - 14<br>14 - 16<br>16 - 18<br>18 - 20<br>20 - 22</h1>
<div class='center top'style="background-color: #f7f7ff;margin-top: -60px;"> </div>
<input class='but bu1'type=button id=But1 onclick="Change1();" style="margin-top:-62px;margin-left: 25px;" >
<input class='but bu1 bu11'type=button id=But2 onclick="Change2();"style="margin-top:-62px;margin-left:193px" >
<input class='but bu1 bu12'type=button id=But3 onclick="Change3();" >
<div class='center top'style="background-color: #f7f7ff;margin-top: 8px;"> </div>
<input class='but bu2'type=button id=But4 onclick="Change4();" >
<input class='but bu2 bu11'type=button id=But5 onclick="Change5();" >
<input class='but bu2 bu12'type=button id=But6 onclick="Change6();" >
<div class='center top'style="background-color: #f7f7ff;margin-top: 8px;"></div>
<input class='but bu3'type=button id=But7 onclick="Change7();" >
<input class='but bu3 bu11'type=button id=But8 onclick="Change8();" >
<input class='but bu3 bu12'type=button id=But9 onclick="Change9();" >
<div class='center top'style="background-color: #f7f7ff;margin-top: 8px;"></div>
<input class='but bu4'type=button id=But10 onclick="Change10();" >
<input class='but bu4 bu11'type=button id=But11 onclick="Change11();" >
<input class='but bu4 bu12'type=button id=But12 onclick="Change12();" >
<div class='center top'style="background-color: #f7f7ff;margin-top: 8px;"></div>
<input class='but bu5'type=button id=But13 onclick="Change13();" >
<input class='but bu5 bu11'type=button id=But14 onclick="Change14();" >
<input class='but bu5 bu12'type=button id=But15 onclick="Change15();" >
<div class='center top'style="background-color: #f7f7ff;margin-top: 8px;"></div>
<input class='but bu6'type=button id=But16 onclick="Change16();" >
<input class='but bu6 bu11'type=button id=But17 onclick="Change17();" >
<input class='but bu6 bu12'type=button id=But18 onclick="Change18();" >
<div class='center top'style="background-color: #f7f7ff;margin-top: 8px;"></div>
<input class='but bu7'type=button id=But19 onclick="Change19();" >
<input class='but bu7 bu11'type=button id=But20 onclick="Change20();" >
<input class='but bu7 bu12'type=button id=But21 onclick="Change21();" >
<h1 style="color: #495867;font-size: 100px;margin-left: 30px;margin-top: -15px;">My To-do List</h1>
<div >
<span onclick="newElement()" class="add">Add</span>
<input type="text" id="myInput" placeholder="Today I want to..." class="input" ></div>
<ul id="myUL" style="color: #495867" ></ul>
<div style='width:200px;height:50px;'></div>
</div>
<script src="plan.js"></script>
<script src="todolist.js"></script>
</body>
</html>