Guest_imported
New member
- Jan 1, 1970
- 0
I have currently added the date to my web page and need to know how to change the colour of the text in which it appears. Can anyone help???
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
<script language="javascript">
var d = new Date();
var dte = ""
dte += (d.getMonth() + 1) + "/";
dte += d.getDate() + "/";
dte += d.getYear();
document.write("Today's Date: <font color='#ff0000'>" + dte + "</font>");
</script>