문자 인코딩
html <head>에
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
처럼 charset=utf-8을 content 속성으로 지정하는 것이 일반적이다.
하지만 html5에선
<meta charset="utf-8" />
처럼 charset이 개별 속성으로 되었다.
링크
<head>안에
<link rel="stylesheet" href="common.css" type="text/css" />
처럼 외부 css를 링크할 수 있다. css는 딱 하나의 언어만 존재하므로 type부분을 생략할 수 있다.
<link rel="stylesheet" href="common.css" />
stylesheet말고도 alternate, archives, author, external, start, prev, next, icon, license, nofollow, noreferrer, pingback,prefetch, search, sidebar, tag 가 있다.