Ruby Coin

Rails 와 프론트 엔드 기술을 이용해 흥미 위주의 빠른 웹 개발 방법론

meta

토픽 Ruby Coin > Development > Front-End > HTML 수업

Meta란?

문서에 대한 정보를 기술하는 태그

문법(Syntax)

<meta name="" content="" />
<meta http-equiv="" content="" />

예제(Example)

example1.html (github)

<!DOCTYPE html>
<html>
    <head>
        <meta name="description" content="생활코딩은 일반인에게 프로그래밍을 알려주는 온라인 수업" />
        <meta name="keywords" content="생활코딩, HTML, HEAD, META" />
        <meta http-equiv="Content-Type" content="text/html;charset=utf-8" >
    </head>
</html>

example2.html - 2초 후에 opentutorials.org로 페이지를 이동함 (github)

<!DOCTYPE html>
<html>
    <head>
        <meta http-equiv="refresh" content="2;url=http://opentutorials.org/">
    </head>
</html>

댓글

댓글 본문