Notice
Recent Posts
Recent Comments
Link
«   2024/07   »
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
Tags
more
Archives
Today
Total
관리 메뉴

WON.dev

chapter12 : mata_tag 본문

WEB.HTML

chapter12 : mata_tag

GAWON 2023. 5. 18. 09:18
<!DOCTYPE html>
<html>
<head>
<!-- 메타 태그 -->
<!-- HTML 문서의 문자 인코딩 방식 HTML5 방식 -->
<meta charset="UTF-8">	
<!-- HTML 문서의 문자 인코딩 방식 HTML4 방식 -->
<meta http-equiv = "content-type" content ="text/html; charset=utf-8">
<!-- 웹 페이지 중요 단어 등록, 웹 페이지 검색시 인덱싱에서 활용 가능하다. -->
<meta name = "keywords" content = "meta, meta tag, meta data">
<!-- 웹 페이지 설명  -->
<meta name = "description" content = "메타 태그를 배우는 페이지">

<!-- 10초 후에 url로 이동  -->
<meta http-equiv = "refresh" content = "10; url = [https://www.naver.com](https://www.naver.com/)">
<!-- keywords, http-equiv 등은 자주 사용되지 않는다. -->
<title>Insert title here</title>

</head>
<body>

</body>
</html>

'WEB.HTML' 카테고리의 다른 글

chapter14 : table  (0) 2023.05.18
chapter13 : img_tag  (0) 2023.05.18
chapter11 : ol_tag  (0) 2023.05.18
chapter10 : ul_tag  (0) 2023.05.18
chapter09 : special_char  (0) 2023.05.18