Meta란?
문서에 대한 정보를 기술하는 태그
문법(Syntax)
1 2 | <meta name= "" content= "" /> <meta http-equiv= "" content= "" /> |
예제(Example)
example1.html (github)
1 2 3 4 5 6 7 8 | <!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)
1 2 3 4 5 6 | <!DOCTYPE html> < html > < head > </ head > </ html > |