-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
27 lines (27 loc) · 787 Bytes
/
index.html
File metadata and controls
27 lines (27 loc) · 787 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>DOM Manipulation</title>
<style>
.box-style {
width: 100px;
height: 100px;
background-color: green;
margin: 10px 0;
}
</style>
</head>
<body>
<div class="container">
<h1 id="header">DOM Manipulation</h1>
<button class="show" onclick="show()">Show</button>
<button id="addBox" onclick="Addchild()">Add Box</button>
<button id="removeBox" onclick="Removechild()">Remove Box</button>
<button id="showBoxCount" onclick="myFunction()">Show Box Count</button>
<button id="create" onclick="Links()">Hi There</button>
</div>
<script src="assests/script.js"></script>
</body>
</html>