-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
43 lines (36 loc) · 1.16 KB
/
index.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 Object Manupulations</title>
</head>
<body>
<div class="container">
<h1 id="main-heading">Fav Movies and Songs</h1>
<ul>
<li class="list-items">Dark Desire</li>
<li class="list-items"> Excuses</li>
<li class="list-items"> Droptop</li>
<li class="list-items"> Summer High</li>
<li class="list-items"> Noor</li>
</ul>
</div>
<h1 id="main-heading">Event Listeners</h1>
<div class="container">
<div class="boxes box-1">
<h1 id="heading">Example 1</h1>
<button onclick="alert('I love javascript')">Enter</button>
</div>
<div class="boxes box-2">
<h1 id="heading">Example 2</h1>
<button class="btn-2">Enter</button>
</div>
<div class="boxes box-3">
<h1 id="heading">Example 3</h1>
<button class="btn-3">Enter</button>
</div>
</div>
<script src="/app.js"></script>
</body>
</html>