'WebApp/HTML'에 해당되는 글 2건

  1. 2010.08.13 HTML 페이지 이동(리다이렉트Redirect)
  2. 2010.08.05 HTML 기본 셋
WebApp/HTML2010. 8. 13. 15:06
HTML 태그를 활용해서 리다이렉트를 하는 것은 매우 간단하다.

다음의 한 줄만 헤드 태그 사이에 넣어주면 된다.
<meta http-equiv="refresh" content="5;url=http://www.example.com/" />

여기서 content 뒤에 있는 숫자 5는 페이지가 로딩되고 5초후에 갱신된다는 것이고,
url은 말 그대로 갱신할 때 읽어들일 페이지의 주소이다.

---
HTML 페이지 이동(http://studio2b.tistory.com/32)
Javascript 페이지 이동(http://studio2b.tistory.com/33)
PHP를 이용한 Header 페이지 이동(http://studio2b.tistory.com/34)

'WebApp > HTML' 카테고리의 다른 글

HTML 기본 셋  (0) 2010.08.05
Posted by 마이클
WebApp/HTML2010. 8. 5. 05:55
Studio[2b]에서 웹 페이지 제작시 사용하는 기본 틀입니다.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" >
<head>
<meta http-equiv="Content-Type" content="application/xhtml+xml; charset=UTF-8" />
<base href="http://www.example.com" />
<link rel="alternative" type="application/rss+xml" title="RSS Feed" href="/rss/" />
<link rel="shortcut icon" href="http://www.example.com/favicon.ico" />
<title>Example</title>
<meta name="description" content="This is a example page." />
<meta name="keyword" content="HTML, example" />
<style type="text/css">
</style>
<script type='text/javascript'>
</script>
</head>
<body>
</body>
</html>

'WebApp > HTML' 카테고리의 다른 글

HTML 페이지 이동(리다이렉트Redirect)  (0) 2010.08.13
Posted by 마이클