In about the simplest terms, you could have something like so:
Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body>
<script type="text/javascript">
;(function(){
var d = new Date();
document.write('<img src="mo_' + d.getMonth() + '.gif"><img src="day_' + d.getDate() + '.gif">');
})();
</script>
</body>
</html>
This would allow you to have month images:
mo_0.gif
through:
mo_11.gif
for Jan (0) through Dec. (11). And day images:
day_1.gif
through
day_31.gif
for each possible date of the month (1 to 31).
Bookmarks