-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path55_PRACTICESET6.html
More file actions
30 lines (29 loc) · 981 Bytes
/
Copy path55_PRACTICESET6.html
File metadata and controls
30 lines (29 loc) · 981 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Solutions to practice set 6</title>
<link rel="stylesheet" href="55.css">
</head>
<body>
<!-- Q1 ANSWER-->
<div class="boxa1">
<div class="btn" id="btn1" onclick="console.log('This is btn1')">This is btn1</div>
<div class="btn" id="btn2" onclick="console.log('This is btn2')">This is btn2</div>
<div class="btn" id="btn3" onclick="console.log('This is btn3')">This is btn3</div>
</div>
<!-- Q2 Q3 ANSWER -->
<div class="boxa2">
<div class="textBox" id="text1">BookMarks</div>
<div id="btn_box"></div>
</div>
<!-- Q4 ANSWER -->
<div class="boxa3" id="boxa3"></div>
<!-- Q5 ANSWER -->
<div class="boxa4" id="bulb_box">
<div class="bulb" id="bulb" onclick="toggleBulb()"></div>
</div>
</body>
</html>
<script src="55.js"></script>