w3.css HTML 포함 HTML에 HTML 스니펫을 포함하는 방법을 알아보자. HTML .html 파일에 포함하려는 HTML을 저장한다. content.html <a href=”howto_google_maps.asp”>Google Maps</a><br> <a href=”howto_css_animate_buttons.asp”>Animated Buttons</a><br> <a href=”howto_css_modals.asp”>Modal Boxes</a><br> <a href=”howto_js_animate.asp”>Animations</a><br> <a href=”howto_js_progressbar.asp”>Progress Bars</a><br> <a href=”howto_css_dropdown.asp”>Hover Dropdowns</a><br> <a href=”howto_js_dropdown.asp”>Click Dropdowns</a><br> <a href=”howto_css_table_responsive.asp”>Responsive Tables</a><br> HTML을 포함 HTML을 포함하려면 w3-include-html 속성을 사용한다. 예제 <div w3-include-html=”content.html”></div> 자바스크립트를 추가 HTML 포함은 JavaScript에 의해 수행된다. 예제 <script> function includeHTML() { var z, i, elmnt, file, xhttp; /* Loop through a collection of all HTML elements: */ z = document.getElementsByTagName(“*”);…