New Text Document

You might also like

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

<!

doctype html>
<HTML>
<HEAD>
<script type = "text/javascript" src = "E:\VU BOOKS\CS603\CS603 PRACTICES\
LEC18.js">
</script>
<link rel = "stylesheet" href = "E:\VU BOOKS\CS603\CS603 PRACTICES\LEC18.css">
</HEAD>
<body>
<script>
function highlight(){
document.getElementById("title").style.color ="red";
document.getElementById("title").style.fontStyle ="italic";
document.getElementById("title").className = "Highlightclass";
}
function normal(){
document.getElementById("title").style.color ="inherit";
document.getElementById("title").style.fontStyle ="normal";
document.getElementById("title").className = "Normalclass";

</script>
<button oneclick = "highligh2()"> Highlight </button>
<button oneclick = "normal2()"> Normal </button>
<h1 id = "title" class = "Normalclass">
CSS <---> javascript coupling
</h1>
</body>
</HTML>

You might also like