-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscript.html
More file actions
28 lines (27 loc) · 759 Bytes
/
script.html
File metadata and controls
28 lines (27 loc) · 759 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>javascript</title>
<script type="text/Javascript">
function hello()
{
alert ("hi")
document.getElementById('demo').innerHTML="Choose More Choose Right";
}
</script>
</head>
<body bgcolor="skyblue">
<p> Parul University</p>
<p Id="demo">
Be Here Be Vibrant
</p>
<input type="button" value="click" onclick="hello()">
<br>
<br>
<button onclick="window.print()"> print</button>
<p id="d1"></p>
</body>
</html>