안녕하세요 찐망고 입니다. js를 이용하여 탭을 만들어 관리해 보겠습니다. 예전에 많이 썼던 탭형태 js Tab 1 Tab 2 Tab 3 Tab 1 Content This is the content of Tab 1. Tab 2 Content This is the content of Tab 2. Tab 3 Content This is the content of Tab 3. .tabcontent { display: none; } .tablink { background-color: #f2f2f2; border: none; color: black; padding: 10px 20px; cursor: pointer; } .tablink:hover { background-color: #ddd; } .tabs { ov..