<link href="css 경로" rel="stylesheet">
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Document</title>
<link href="css 경로" rel="stylesheet">
</head>
<body>
<p><strong>Jun</strong></p>
</body>
</html>
.profile { font-size : 20px } /*class*/
#special { font-size : 30px } /*id*/
p { font-size : 16px } /*tag*/
Class Selector는 .profile{ } 이렇게 적을 수 있고 모든 class="profile"을 가진 요소에 스타일을 적용가능합니다.
ID Selector는 #special { } 이렇게 적을 수 있고 모든 id="special" 속성을 가진 요소에 스타일을 적용가능합니다.
Tag selector는 p { font-size: 10px } 이렇게 적을 수 있고 모든
태그에 스타일을 적용가능합니다.