CSS를 HTML 문서에 적용하는 방법 1. head안에 link로 추가 html의 head 사이의 link를 추가하며, rel에 stylesheet와 href 속성으로 위치를 알려줌 2. @import를 sting 또는 url 형태로 추가 @import "nav.css"; @import url("nav.css"); @import는 문서 최상단에 위치해야하며, Browser Support 을 확인해야한다. 아래 내용 참고 https://www.w3schools.com/cssref/pr_import_rule.php CSS @import Rule W3Schools offers free online tutorials, references and exercises in all the major languages..