-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex3.html
More file actions
27 lines (25 loc) · 797 Bytes
/
index3.html
File metadata and controls
27 lines (25 loc) · 797 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-part 3</title>
</head>
<body>
<h1>Hello Bachoo- PWSkills</h1>
<p id="js"></p>
<button onclick="hey()" id="jss">Submit</button>
<script>
document.addEventListener("click",hello);
function hello(){
document.getElementById("js").innerText="Namaste Bachoo"
}
function hey(){
document.getElementById("jss").innerText="Namaste bachoo"
document.getElementById("jss").style.color="red"
document.getElementById("jss").style.backgroundColor="black"
document.getElementById("jss").style.padding="16px"
}
</script>
</body>
</html>