-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathWork and Study.html
More file actions
78 lines (77 loc) · 2.8 KB
/
Work and Study.html
File metadata and controls
78 lines (77 loc) · 2.8 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>
<head>
<link rel="stylesheet" href="workandstudy.css">
<script src="Workstudy.js"></script>
<script src="https://unpkg.com/react@16/umd/react.development.js"></script>
<script src="https://unpkg.com/react-dom@16/umd/react-dom.development.js"></script>
<script src="https://unpkg.com/babel-standalone@6.15.0/babel.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<title>
Work and Study
</title>
</head>
<body>
<div class="heading">
<h1>Work and Study</h1>
</div>
<div class="left">
<div class="insleft">
<div class="subhead">
<h2>TO DO LIST</h2>
</div>
<br>
<form>
<div class="subbox">
Subject 1 <input type="button" class="plus" id="plus1" onclick="myfun1()" value="+">
</div>
<div id="sub1" class="sub1" style="display: none;">
<button>>Notes</button><br>
<button>>Codes</button><br>
<button>>Questions</button><br><br>
</div>
</form>
</div>
<br>
<div class="insleft">
<form>
<div class="subbox">
Subject 2 <input type="button" class="plus" id="plus2" onclick="myfun2()" value="+">
</div>
<div id="sub2" class="sub1" style="display: none;">
<button>>Notes</button><br>
<button>>Codes</button><br>
<button>>Questions</button><br><br><br>
</div>
</form>
</div>
<br>
<div class="insleft">
<form>
<div class="subbox">
Subject 3 <input type="button" class="plus" id="plus3" onclick="myfun3()" value="+">
</div>
<div id="sub3" class="sub1" style="display: none;">
<button>>Notes</button><br>
<button>>Codes</button><br>
<button>>Questions</button><br><br><br>
</div>
</form>
</div>
<br>
<div class="insleft">
<form>
<div class="subbox">
Subject 4 <input type="button" class="plus" id="plus4" onclick="myfun4()" value="+">
</div>
<div id="sub4" class="sub1" style="display: none;">
<button>>Notes</button><br>
<button>>Codes</button><br>
<button>>Questions</button><br><br><br>
</div>
</form>
</div>
<br>
</div>
</body>
</html>