패스트캠퍼스 강의를 정리한 내용입니다.
"The RED : 견고한 UI 설계를 위한 마크업 가이드 by 정찬명"
*크롬 확장프로그램 Lighthouse을 통해 검색 엔진 최적화 점수 확인 가능
대시(-), 파이프(|), 콜론(:)을 추천
Page title - Site name
Page title | Site name
Page title : Site name
대시(-)를 사용하면 키워드 사이의 공간이 더 크기 때문에 가독성 증가
파이프(|), 콜론(:)은 장평이 적기 때문에 공간을 더 효율적으로 사용 가능
언더바(_)는 인접 키워드를 하나로 연결하므로 비추천
백악관 : The Biden-Harris Administration | The White House
W3 : All Standards and Drafts - W3C
삼성 : 갤럭시 S | Samsung 대한민국
<html lang="ko">
<head>
<meta charset="utf-8">
<meta name="description" content="A description of the page">
// keywords는 구글 검색 엔진에서 참조하지 않는 값이므로 생략해도 무방함
<meta name="keywords" content="shirts, pants, blouse, ...">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Page title - Site name</title>
</head>
</html>
HTML <head>
요소에 들어가는 태그
검색 엔진을 위해서 들어가는 태그
<meta charset="utf-8">
<meta name="description" content="A description of the page">
<meta name="keywords" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">