-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlight.html
More file actions
33 lines (30 loc) · 873 Bytes
/
light.html
File metadata and controls
33 lines (30 loc) · 873 Bytes
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
<html>
<head>
<title>Hackers' Club JS Session 2</title>
</head>
<body>
<div>
<div id="red_div" style="width: 100px; height: 100px; background: red"></div>
<br>
<button onclick="turn_off_red()">Turn Off</button>
<button onclick="turn_on_red()">Turn On</button>
<br>
<br>
<br>
<div id="orange_div" style="width: 100px; height: 100px; background: orange"></div>
<br>
<button onclick="turn_off_orange()">Turn Off</button>
<button onclick="turn_on_orange()">Turn On</button>
<br>
<br>
<br>
<div id="green_div" style="width: 100px; height: 100px; background: green"></div>
<br>
<button onclick="turn_off_green()">Turn Off</button>
<button onclick="turn_on_green()">Turn On</button>
</div>
</body>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script type="text/javascript">
</script>
</html>