Hi there ctmom05,
and a warm welcome to these forums. 
Try this, it is pretty basic...
Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title>date only</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<style type="text/css">
body {
background-color:#003;
color:#fff;
}
#container {
text-align:center;
margin-top:40px;
}
#date {
font-family:verdana,arial,helvetica,sans-serif;
font-size:20px;
color:#fff;
text-align:center;
background-color:#003;
border:0 solid;
width:190px;
}
</style>
<script type="text/javascript">
window.onload=function(){
now=new Date().toDateString();
document.getElementById('date').value=now;
}
</script>
</head>
<body>
<div id="container">
<input id="date" type="text">
</div>
</body>
</html>
coothead
Bookmarks