x
1
2
<html lang="en">
3
<head>
4
<title>Page Title</title>
5
</head>
6
<body>
7
8
<h1>Welcome To CloseTag.com</h1>
9
<button type="button" id="button">Try It</button>
10
<script>
11
button.addEventListener("click",()=>{
12
document.body.innerHTML = "Welcome To Javascript Toturial";
13
});
14
</script>
15
16
</body>
17
</html>