반응형

HTML <head> 설정 예

 

네이버에서 사용하는 <head> 설정 부분 일부이다.

단, 네이버는 <meta name="viewport" content="width=1190">로 설정되어 있으며, 추가 설정 부분이 있다.

 

<!DOCTYPE html>
<html lang="ko" data-dark="false">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge"> 
<meta name="viewport" content="width=device-width, initial-scale=1"> 
<meta name="apple-mobile-web-app-title" content="Hello"/> 
<meta name="robots" content="index,nofollow"/> 
<meta name="description" content="예제 페이지입니다."/> 
<title>Test</title>
</head>
<body>
...
<script>
//...
</script>
</body>
</html>

 

반응형

+ Recent posts