-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathNotes One.html
More file actions
30 lines (29 loc) · 1.06 KB
/
Notes One.html
File metadata and controls
30 lines (29 loc) · 1.06 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
<!DOCTYPE html>
<html>
<body>
<div onclick="functionOne()" style="width:165px;background-color:#202020;text-align:left;cursor:pointer">
<p style="color:#6A5ACD;font-family:arial;font-size:120%">
<b>
</b>
</p>
</div>
<script>
function functionOne()
{
document.getElementById("blockOneNotes").innerHTML="";
}
function collapseOne()
{
document.getElementById("blockOneNotes").innerHTML=""
}
</script>
<p style="color:#6A5ACD;font-family:arial" id="blockOneNotes">
</p>
<div onclick="collapseOne()" style="background-color:#202020;width:165px;text-align:left;font-family:arial;color:#6A5ACD;font-size:120%;cursor:pointer">
<b>
Collapse
</b>
</div>
<br>
</body>
</html>