Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- 국가정보원
- 여행
- 불법유통
- UKPT
- 프로젝트
- HTML
- codeup
- Los
- 정보보안
- 도구모음
- suninatas
- Service
- 경기팀
- 화학물질불법유통온라인감시단
- 기타정보
- PHP
- 국가기록원
- 대외활동
- UKPT level
- 화학물질
- 국정원
- 화학물질안전원
- 연구모임
- 파이썬
- webhacking
- nurisec
- 12기
- MITRE ATT&CK
- 불법유통근절
- 웹 해킹 입문
Archives
- Today
- Total
agencies
[프로젝트] 홈페이지 구축 (nav) v0.3 본문
아파치와 php를 연동한 후 nav(메뉴)를 만들었습니다.
<nav>
<ul class="menu" style="display:inline-block;">
<li>소식ㆍ정보
<ul class="submenu"><li>공지사항</li>
<li><a href="//agencies.tistory.com" target="_blank">팀 블로그</a></li>
<li></li>
</ul>
</li>
<li>주요활동
<ul class="submenu"><li>자원봉사</li>
<li>서포터즈</li>
<li>정보보안</li>
</ul>
</li>
<li>팀 소개
<ul class="submenu"><li>팀 리더 인사말</li>
<li>슬로건</li>
<li>직무</li>
</ul>
</li>
</ul>
</nav>
<style>
*{margin:0; padding:0;}
nav{text-align:center; margin-top:5px; width:1050px;margin:0 auto; cursor:pointer;}
a{text-decoration:none;}
a:hover{text-decoration:underline; text-underline-position:under;}
a:visited{color:red;}
ul{list-style-type:none;}
.menu > li{float:left; width:350px; background-color:white; height:55px; line-height:55px; font-weight:bold; font-size:20px;}
.submenu{overflow:hidden; height:0;}
.submenu > li{background-color:#FBFBFB; height:35px; font-weight:500; font-size:13px; line-height:30px;}
.menu:hover .submenu{height:110px;}
</style>
'Ⅲ. 정보보안' 카테고리의 다른 글
(중요) [프로젝트] 홈페이지 구축 - 파일 업로드 취약점 (0) | 2024.02.26 |
---|---|
[프로젝트] 홈페이지 구축 (메인 배경화면) v0.4 (0) | 2024.02.26 |
[프로젝트] 홈페이지 구축 (php 설치) v0.2 (0) | 2024.02.26 |
[프로젝트] 홈페이지 구축 (아파치 설치) v0.1 (0) | 2024.02.26 |
해킹 보안 맛보기 (0) | 2024.02.25 |