html에 다른 html Snippet 포함하기 header와 footer를 분리해 한 곳에서 관리하고 싶을 때 include를 사용한다. https://www.w3schools.com/howto/howto_html_include.asp html 분리하기 header와 footer 등 페이지의 공통 부분을 각각의 html 파일로 분리한다. outline 폴더 내 > header.html 파일 생성 header outline 폴더 내 footer.html 파일 생성 footer html 파일 내 include 포함 index.html 파일 내 include.js 파일 생성 js > include.js 파일 생성 후 연결 // include.js window.addEventListener('load&..