w3.css 이미지의 Navbar CSS를 사용하여 이미지에 탐색 메뉴를 추가하는 방법을 알아보자. 이미지에 Navbar를 만드는 방법 1단계) HTML 추가 탐색 모음을 만든다. <div class=”bg-img”> <div class=”container”> <div class=”topnav”> <a href=”#home”>Home</a> <a href=”#news”>News</a> <a href=”#contact”>Contact</a> <a href=”#about”>About</a> </div> </div> </div> 2단계) CSS 추가 탐색 모음 스타일을 지정한다. .bg-img { /* The image used */ background-image: url(“img_nature.jpg”); min-height: 380px; /* Center and scale the image nicely */ background-position: center; background-repeat: no-repeat; background-size: cover; /* Needed to position the navbar */ position: relative; }…