1.

How To Change The Background Colour Of An Element?

Answer»

A script code using them you can change the background COLOR of elements of BODY.
<HTML>
<body>
<script TYPE="text/javascript">
document.body.bgColor="pink";
</script>
<p>Now, Your background color is pink.</p>
</body>
</html>

A script code using them you can change the background color of elements of body.
<html>
<body>
<script type="text/javascript">
document.body.bgColor="pink";
</script>
<p>Now, Your background color is pink.</p>
</body>
</html>



Discussion

No Comment Found