영원한사랑

<html>

<head>
<script language="JavaScript">
<!--
function na_last_update(lname, color, size, font, style, weight)
{
var str =document.lastModified;
if (document.layers) {
  with(document.layers[lname]) {
    document.open()
    document.write(str)
    document.fgColor = color
    document.close();
   }
  }
  if (document.all) {
    document.all(lname).style.color = color
    document.all(lname).style.fontSize = size
    document.all(lname).style.fontFamily = font
    document.all(lname).style.fontStyle = style
    document.all(lname).style.fontWeight = weight
    document.all(lname).innerHTML = str
  }
}

// -->
</script>
</head>

<!--수정할 곳 -->
<body bgcolor="white" text="black" link="blue" vlink="purple" alink="red" OnLoad="na_last_update('layer1', 'black', 12, '굴림', 'normal', 'normal');">
<!--수정할 곳 -->


<div id="layer1" style="width:200px; height:200px; position:absolute; left:88px; top:125px; z-index:1;">
    <p><!--이곳에는 내용 넣으실 필요 없습니다. 이곳이 날짜와 시간이 표시되는 곳이니까요 --></p>
</div>
</body>

</html>