Doctype & Document

Juhwan Lee·2021년 11월 8일
0
post-thumbnail

✍️ Structure

<!DOCTYPE html> <!-- HTML5 문법을 사용하겠다 -->
<html lang="ko-KR">
<head>
  <!-- 웹 문서에 관한 meta 태그 -->
  <meta charset="UTF-8">
  <meta name="메타 데이터 종류" content="메타 데이터 값">
  <meta name="viewport" content="width=device-width, initial-scale=1.0"> <!-- title만큼 필수적인 요소 -->
  <meta name="author" content="juhwanlee">
  <meta name="description" content="doctype &amp; document structure">
  <meta name="keywords" content="doctype &amp; document">
  <title>문서의 제목</title> <!-- 검색 최적화에 매우 중요 -->
  <link rel="stylesheet" href="style.css">
  <link href='//spoqa.github.io/spoqa-han-sans/css/SpoqaHanSansNeo.css' rel='stylesheet' type='text/css'>
  <script src="./lorem.js" defer></script>
</head>
  
<body>
  <!-- 문서에 보여지는 모든 content -->
  <script src="./lorem.js"></script>
</body>
</html>

🔍 검색 최적화를 위한 팁 (title 작성)

  1. 키워드 단순 나열은 비추
  2. 페이지마다 그에 맞게 변경
  3. 무엇에 관한 내용인지 센스 있게
profile
keep going

0개의 댓글