Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 2

index.

html:
<!DOCTYPE html>
<html>
<head>
<script src="script.js">

</script>

</head>
<body onload="f()">

<h2>JavaScript</h2>

<p id="demo">JavaScript can change HTML content.</p>

<div class="example">First div</div>


<div class="example">Second div</div>

<script>
//document.write("Value of x:"+ x);
var x = document.getElementsByClassName("example");
document.write(x);
// document.getElementById("demo").innerHTML = "Hello World";
document.getElementById("demo").style.color = "blue";

</script>

<button onclick="f()">
Click me
</button>

<p id="id1">Input Text.</p>


<input type="text" onkeydown="keydown()" onkeyup="keyup()">
</body>
</html>

script.js:

//document.write("Speed");
//window.alert(5 + 6);
//console.log(5 + 6);
//
//var x=5;
//var name= "BUP"
//let obj;
//obj = null;
function f() {
alert("Onload event");
}

function keydown() {
document.getElementById("id1").style.backgroundColor = "red";
}
function keyup() {
document.getElementById("id1").style.backgroundColor = "green";
}

You might also like