<!DOCTYPE HTML>
<html>
<head>
<title>index.jsp</title>
<!--
<link rel="stylesheet" type="text/css" href="styles.css">
-->
<script type="text/javascript">
function load() {
var clock=document.getElementById("clock");
var now = new Date();
clock.innerHTML=now.toLocaleDateString()+""+now.toLocaleTimeString();
setTimeout(load, 1000);
}
window.onload=load;
</script>
</head>
<body >
<span id="clock"></span>
</body>
</html>
<html>
<head>
<title>index.jsp</title>
<!--
<link rel="stylesheet" type="text/css" href="styles.css">
-->
<script type="text/javascript">
function load() {
var clock=document.getElementById("clock");
var now = new Date();
clock.innerHTML=now.toLocaleDateString()+""+now.toLocaleTimeString();
setTimeout(load, 1000);
}
window.onload=load;
</script>
</head>
<body >
<span id="clock"></span>
</body>
</html>