프로그래밍/HTML

2. Meta 태그

seungdols 2014. 3. 14. 15:13

 

 

<!DOCTYPE html>

<html>
<head>
<!-- description - content를 명시적으로 설명해주는 역할 -->
<meta name="description" content="사람들에게 공동모임을 전파하자" />
<!-- 주요 아이템들을 나열해주는 것. -->
<meta name="keywords" content="study,HTML,HEAD" />
<!-- 문서의 정확한 표현을 해주는 역할 -->
<meta http-equiv="Content-Type" content="text/html";
charSet="UTF-8" />

</head>
<body>


</body>

</html>

 

 

 

refresh의 속성은 페이지를 다시 로드 하거나 홈페이지의 주소가 변경되어 사용자들을 자동으로 연결 시키기 위한 속성이고.

Content=2 이 의미는 2초 후에 네이버로 이동한다는 뜻이다.

 

반응형

'프로그래밍 > HTML' 카테고리의 다른 글

4-3. Radiobutton,ComboBox,CheckBox  (0) 2014.03.16
4-2. Form - TextField, Password, TextArea  (0) 2014.03.16
4-1. Form  (0) 2014.03.14
3. Title 태그  (0) 2014.03.14
1. 표  (0) 2014.03.14