블로그 이미지
바람한톨

공지사항

최근에 올라온 글

최근에 달린 댓글

글 보관함

calendar

1 2 3 4
5 6 7 8 9 10 11
12 13 14 15 16 17 18
19 20 21 22 23 24 25
26 27 28 29 30 31


<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
 <head>
<meta name = "viewport" content = "initial-scale = 1.0">
 </head>

 <body>
 <script type="text/javascript">
  var currDate = new Date();
  var currTime = currDate.getHours();
  document.write("Current Date : " + currDate + "<br/>");
  if ((navigator.userAgent.indexOf('iPhone') != -1) ||  (navigator.userAgent.indexOf('iPod') != -1)) {
   document.location = "http://메롱/iphone.html";
  } else if((navigator.userAgent.indexOf('iPad') != -1)) {
   document.location = "http://메롱/ipad.html";
  }
 </script> 

 </body>
</html>