1
2
<html>
3
<head>
4
<title>createElement JavaScript</title>
5
</head>
6
<body>
7
<button type="button" id="button">Create Element</button>
8
<script>
9
let button = document.getElementById('button');
10
button.addEventListener("click",()=>{
11
// 1- Create new element
12
let apple = document.createElement('h1');
13
// 2- Add Text to element
14
apple.innerText = "Welcome To CloseTag.com";
15
// 3- Prepend Child to Parent body
16
document.body.prepend(apple);
17
});
18
19
</script>
20
</body>
21
</html>