-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patheventListener.html
43 lines (38 loc) · 1.38 KB
/
eventListener.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
<link rel="stylesheet" href="styles/style.css" />
</head>
<body>
<button>Event Listener</button>
<h1>I love Bangladesh</h1>
<div>
<button class="btn-1">Event Listener Button 1</button>
<button class="btn-1">Event Listener Button 2</button>
<button class="btn-1">Event Listener Button 3</button>
<h2>Event Listener</h2>
</div>
<div>
<button class="btn">Event Listener Button 1</button>
<button class="btn">Event Listener Button 2</button>
<button class="btn">Event Listener Button 3</button>
<h3>Event Listener</h3>
</div>
<!-- Audio Player button -->
<div>
<button class="audio-button a">Button a</button>
<button class="audio-button b">Button b</button>
<button class="audio-button c">Button c</button>
<h3>Event Listener</h3>
</div>
<div>
<textarea name="" id="" cols="30" rows="10"></textarea>
<p>Key press Listener</p>
<h4>Key press Listener</h4>
</div>
<script src="/scripts//eventListener.js"></script>
</body>
</html>