헤더에 <link>
태그로 CSS파일을 연결한다.
<head>
<title>Hello World</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
li { }
table { }
body { }
.title { }
.content { }
#name { }
#email { }
#password { }
* { }
nav li { }
/* nav태그 안의 li */
h4 + ul { }
/* h4에 붙어있는 ul */
a[href = "https://naver.com"] { }
div:nth-of-type(3) { }
/* 전체 html 에서 3번째 div태그 */