w3.css 전체 페이지 탭 CSS 및 JavaScript를 사용하여 전체 브라우저 창을 덮는 전체 페이지 탭을 만드는 방법을 알아보자. 한 페이지 탭 만들기 1단계) HTML 추가 <button class=”tablink” onclick=”openPage(‘Home’, this, ‘red’)”>Home</button> <button class=”tablink” onclick=”openPage(‘News’, this, ‘green’)” id=”defaultOpen”>News</button> <button class=”tablink” onclick=”openPage(‘Contact’, this, ‘blue’)”>Contact</button> <button class=”tablink” onclick=”openPage(‘About’, this, ‘orange’)”>About</button> <div id=”Home” class=”tabcontent”> <h3>Home</h3> <p>Home is where the heart is..</p> </div> <div id=”News” class=”tabcontent”> <h3>News</h3> <p>Some news this fine day!</p> </div> <div id=”Contact” class=”tabcontent”> <h3>Contact</h3> <p>Get in touch, or swing by for a cup…