Lets examine some of the applications of using javascript with the Dom.
The Document Object has several methods, one of which allows us to change the background colour of the web page.
Changing the background colour of a page
Add the following code to a web page
<body>
<a href='javascript:void(0);'
onclick="javascript:document.body.style.backgroundColor='tan';">
Tan me</a>
</body>
Exercise
Using the exercise above as a guide add other colours and links to your web page.