<head></head>
태그 내의 <style></style>
태그style=""
속성<link href="*.css" rel="stylesheet">
해당 프로젝트의 css 폴더 내에
*.css
파일을 작성한 후,
<head></head>
안에
<link href="css/*.css" rel="stylesheet">
로 불러 옴
(이 때의 href 경로는 경우에 따라 상대경로로 작성될 수 있음)
1. 코드가 훨씬 정돈됨
(html은 html끼리, css는 css끼리...)
2. 여러 파일에 중복된 코드를 줄일 수 있음