티스토리 뷰

사이트 주소를 기억이 안 나는데 웹사이트 정상적으로 로딩되는지 확인하기 위한 스크립트이다.

그냥 내 입맛에 맞게 조금 수정해보았다.

주소기 기억이 안 나서 원래 사이트 주인 깨는 죄송^^;;

 

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//KO">
<html>
 <head>
  <title> New Document </title>
  <meta name="generator" content="Editplus">
  <meta name="Author" content="">
  <meta name="Keywords" content="">
  <meta name="Description" content"">
  
  <script language="javascript">
   setTimeout("history.go(0);",5000);
   <!-- '5000'은 ms 단위로 5초를 뜻함, 원하는 시간으로 조정 가능 -->
  </script>
  <style>
   .restricted{width:300px; height:300px; overflow-y: hidden; border:2px solid #666CCC}
   <!-- 'restricted'라는 클래스를 선언, 스크롤 바를 없애기 위해 overflow-y, 테두리 색깔을 위해 solid -->
  </style>
 </head>
 <body leftmargin="0" marginwidth="0" topmargin="0" marginheight="0">
  <!-- 모니터링하기 원하는 사이트 주소를 src 에 넣어주면 된다. -->
  <iframe name=site1 src="http://test1.co.kr" width=300 height=300 class="restricted" scrolling=no>
  </iframe>
  <iframe name=site2 src="http://test2.co.kr" width=300 height=300 class="restricted" scrolling=no>
  </iframe>
  <iframe name=site3 src="http://test3.co.kr" width=300 height=300 class="restricted" scrolling=no>
  </iframe>
  
 </body>
</html>

댓글