-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathElement.html
More file actions
31 lines (22 loc) · 711 Bytes
/
Copy pathElement.html
File metadata and controls
31 lines (22 loc) · 711 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
<!--Element8-->
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
<title>DOM Manipulation</title>
</head>
<body>
<!-- Button to trigger the addition of a new element -->
<button id="addButton">Add Element</button>
<!-- Button to trigger the removal of the last added element -->
<button id="removeButton">Remove Element</button>
<!-- A container that will hold the dynamic elements -->
<div id="container">
<h1>test</h1>
<p>my description i will add it</p>
<button>join</button>
</div>
<script src="script.js""></script>
<script src=" ../../Don't touche/adv.js"></script>
</body>
</html>