<!DOCTYPE html>
<!--[if lt IE 9]>
<script src="html5shiv.js"></script>
<![endif]-->
<head>
<script type="text/javascript">
document.createElement('header');
document.createElement('footer');
document.createElement('section');
document.createElement('aside');
document.createElement('nav');
document.createElement('article');
</script>
<meta charset="utf-8"/>
<meta name="description" content="The Overflowing church website's main page" />
<style>
#topMenu {
height: 30px; /* 메인 메뉴의 높이 */
width: 850px; /* 메인 메뉴의 넓이 */
}
#topMenu ul { /* 메인 메뉴 안의 ul을 설정함: 상위메뉴의 ul+하위 메뉴의 ul */
list-style-type: none; /* 메인 메뉴 안의 ul 내부의 목록 표시를 없애줌 */
margin: 0px; /* 메인 메뉴 안의 ul의 margin을 없앰 */
padding: 0px; /* 메인 메뉴 안의 ul의 padding을 없앰 */
}
#topMenu ul li { /* 메인 메뉴 안에 ul 태그 안에 있는 li 태그의 스타일 적용(상위/하위메뉴 모두) */
color: white; /* 글씨 색을 흰색으로 설정 */
background-color: #019ee3; /* 배경 색을 RGB(2D2D2D)로 설정 */
float: left; /* 왼쪽으로 나열되도록 설정 */
line-height: 30px; /* 텍스트 한 줄의 높이를 30px로 설정 */
vertical-align: middle; /* 세로 정렬을 가운데로 설정 */
text-align: center; /* 텍스트를 가운데로 정렬 */
position: relative; /* 해당 li 태그 내부의 top/left 포지션 초기화 */
}
.menuLink, .submenuLink { /* 상위 메뉴와 하위 메뉴의 a 태그에 공통으로 설정할 스타일 */
text-decoration:none; /* a 태그의 꾸밈 효과 제거 */
display: block; /* a 태그의 클릭 범위를 넓힘 */
width: 150px; /* 기본 넓이를 150px로 설정 */
font-size: 12px; /* 폰트 사이즈를 12px로 설정 */
font-weight: bold; /* 폰트를 굵게 설정 */
font-family: "Trebuchet MS", Dotum; /* 기본 폰트를 영어/한글 순서대로 설정 */
}
.menuLink { /* 상위 메뉴의 글씨색을 흰색으로 설정 */
color: white;
}
.topMenuLi:hover .menuLink { /* 상위 메뉴의 li에 마우스오버 되었을 때 스타일 설정 */
color: ; /* 글씨 색 빨간색 */
background-color: #4d4d4d; /* 배경색을 밝은 회색으로 설정 */
}
.submenuLink { /* 하위 메뉴의 a 태그 스타일 설정 */
color: #2d2d2d; /* 글씨 색을 RGB(2D2D2D)로 설정 */
background-color: white; /* 배경색을 흰색으로 설정 */
border: solid 1px black; /* 테두리를 설정 */
margin-top: -1px; /* 위 칸의 하단 테두리와 아래칸의 상단 테두리가 겹쳐지도록 설덩 */
}
.longLink { /* 좀 더 긴 메뉴 스타일 설정 */
width: 190px; /* 넓이는 190px로 설정 */
}
.submenu { /* 하위 메뉴 스타일 설정 */
position: absolute; /* html의 flow에 영향을 미치지 않게 absolute 설정 */
height: 0px; /* 초기 높이는 0px로 설정 */
overflow: hidden; /* 실 내용이 높이보다 커지면 해당 내용 감춤 */
transition: height .2s; /* height를 변화 시켰을 때 0.2초간 변화 되도록 설정(기본) */
-ms-transition : height .2s;
-webkit-transition: height .2s; /* height를 변화 시켰을 때 0.2초간 변화 되도록 설정(구버전 크롬/사파라ㅣ) */
-moz-transition: height .2s; /* height를 변화 시켰을 때 0.2초간 변화 되도록 설정(구버전 파폭) */
-o-transition: height .2s; /* height를 변화 시켰을 때 0.2초간 변화 되도록 설정(구버전 오페라) */
}
.topMenuLi:hover .submenu { /* 상위 메뉴에 마우스 모버한 경우 그 안의 하위 메뉴 스타일 설정 */
height: 93px; /* 높이를 93px로 설정 */
}
.submenuLink:hover { /* 하위 메뉴의 a 태그의 마우스 오버 스타일 설정 */
color: red; /* 글씨색을 빨간색으로 설정 */
background-color: #dddddd; /* 배경을 RGB(DDDDDD)로 설정 */
}
</style>
<!--[if lt IE 9]>
<script src="html5shiv.js"></script>
<![endif]-->
<!--[if lt IE 9]>
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<!--[if lt IE 7]>
<script src="http://ie7-js.googlecode.com/svn/version/2.1(beta4)/IE7.js"></script>
<![endif]-->
<!--[if lt IE 7]>
<script src="http://ie7-js.googlecode.com/svn/version/2.1(beta4)/IE7.js"></script>
<![endif]-->
<!--[if lt IE 8]>
<script src="http://ie7-js.googlecode.com/svn/version/2.1(beta4)/IE8.js"></script>
<![endif]-->
<!--[if lt IE 9]>
<script src="http://ie7-js.googlecode.com/svn/version/2.1(beta4)/IE9.js"></script>
<![endif]-->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/respond.js/1.3.0/respond.min.js"></script>
<![endif]-->
</head>
<!--[if lt IE 9]>
<script src="html5shiv.js"></script>
<![endif]-->
<body>
<!--http://code.google.com/phtml5shiv/
http://modernizr.com/-->
<div id="topMenu" >
<ul>
<li class="topMenuLi">
<a class="menuLink" href="http://unikys.tistory.com/category/Programming%20Lecture">LECTURES</a>
<ul class="submenu">
<li><a href="http://unikys.tistory.com/category/Programming%20Lecture/%EC%86%8D%EA%B9%8A%EC%9D%80%20%EC%9E%90%EB%B0%94%EC%8A%A4%ED%81%AC%EB%A6%BD%ED%8A%B8%20%EA%B0%95%EC%A2%8C" class="submenuLink longLink">속깊은 자바스크립트 강좌</a></li>
<li><a href="http://unikys.tistory.com/category/Programming%20Lecture/%EB%B0%91%EB%B0%94%EB%8B%A5%EB%B6%80%ED%84%B0%20%ED%99%88%ED%8E%98%EC%9D%B4%EC%A7%80%20%EB%A7%8C%EB%93%A4%EA%B8%B0" class="submenuLink longLink">밑바닥부터 홈페이지 만들기</a></li>
<li><a href="http://unikys.tistory.com/category/Programming%20Lecture/Android%28%EC%95%88%EB%93%9C%EB%A1%9C%EC%9D%B4%EB%93%9C%29%20%EC%95%B1%20%EA%B0%9C%EB%B0%9C" class="submenuLink longLink">안드로이드 앱 개발</a></li>
</ul>
</li>
<li>|</li>
<li class="topMenuLi">
<a class="menuLink" href="http://unikys.tistory.com/guestbook">GUEST BOOK</a>
</li>
<li>|</li>
<li class="topMenuLi">
<a class="menuLink" href="http://unikys.tistory.com/tag">TAG CLOUD</a>
<ul class="submenu">
<li><a href="http://unikys.tistory.com/tag/%EC%9E%90%EB%B0%94%EC%8A%A4%ED%81%AC%EB%A6%BD%ED%8A%B8" class="submenuLink">자바스크립트</a></li>
<li><a href="http://unikys.tistory.com/tag/%EA%B0%95%EC%A2%8C" class="submenuLink">강좌</a></li>
<li><a href="http://unikys.tistory.com/tag/K100D" class="submenuLink">K100D</a></li>
</ul>
</li>
<li>|</li>
<li class="topMenuLi">
<a class="menuLink" href="http://unikys.tistory.com/media">MEDIA LOG</a>
</li>
<li>|</li>
<li class="topMenuLi">
<a class="menuLink" href="http://unikys.tistory.com/location">LOCATION LOG</a>
</li>
</ul>
</div>
</body>
</html>
댓글 1개
??
게시판 목록
프로그램
| 번호 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|
| 7630 | 10년 전 | 636 | ||
| 7629 |
|
10년 전 | 2359 | |
| 7628 | 10년 전 | 778 | ||
| 7627 |
|
10년 전 | 1010 | |
| 7626 |
|
10년 전 | 1769 | |
| 7625 | 10년 전 | 677 | ||
| 7624 | 10년 전 | 687 | ||
| 7623 |
|
10년 전 | 3036 | |
| 7622 | 10년 전 | 701 | ||
| 7621 |
leeleeleelee
|
10년 전 | 574 | |
| 7620 | 10년 전 | 531 | ||
| 7619 | 10년 전 | 466 | ||
| 7618 | 10년 전 | 1002 | ||
| 7617 | 10년 전 | 714 | ||
| 7616 | 10년 전 | 620 | ||
| 7615 | 10년 전 | 716 | ||
| 7614 | 10년 전 | 1232 | ||
| 7613 |
|
10년 전 | 2065 | |
| 7612 | 10년 전 | 1127 | ||
| 7611 | 10년 전 | 1391 | ||
| 7610 |
|
10년 전 | 1887 | |
| 7609 |
|
10년 전 | 1305 | |
| 7608 |
mwdkim
|
10년 전 | 1103 | |
| 7607 |
|
10년 전 | 1031 | |
| 7606 |
mwdkim
|
10년 전 | 3906 | |
| 7605 | 10년 전 | 677 | ||
| 7604 | 10년 전 | 1014 | ||
| 7603 | 10년 전 | 1636 | ||
| 7602 |
|
10년 전 | 1051 | |
| 7601 |
AniNest
|
10년 전 | 2770 | |
| 7600 |
port443
|
10년 전 | 1007 | |
| 7599 | 10년 전 | 931 | ||
| 7598 | 10년 전 | 999 | ||
| 7597 | 10년 전 | 4560 | ||
| 7596 |
SeungYeon
|
10년 전 | 878 | |
| 7595 |
untitled
|
10년 전 | 2403 | |
| 7594 |
프로그래머7
|
10년 전 | 1704 | |
| 7593 |
untitled
|
10년 전 | 2346 | |
| 7592 |
untitled
|
10년 전 | 1923 | |
| 7591 |
untitled
|
10년 전 | 2664 | |
| 7590 |
아리마2001
|
10년 전 | 836 | |
| 7589 | 10년 전 | 1093 | ||
| 7588 |
|
10년 전 | 2902 | |
| 7587 | 10년 전 | 1288 | ||
| 7586 | 10년 전 | 650 | ||
| 7585 | 10년 전 | 1668 | ||
| 7584 | 10년 전 | 1399 | ||
| 7583 |
leeleeleelee
|
10년 전 | 1145 | |
| 7582 |
|
10년 전 | 1083 | |
| 7581 | 10년 전 | 1309 | ||
| 7580 | 10년 전 | 962 | ||
| 7579 |
|
10년 전 | 593 | |
| 7578 | 10년 전 | 1407 | ||
| 7577 |
|
10년 전 | 1860 | |
| 7576 | 10년 전 | 1372 | ||
| 7575 |
멋진남자임
|
10년 전 | 1451 | |
| 7574 | 10년 전 | 2098 | ||
| 7573 | 10년 전 | 3227 | ||
| 7572 | 10년 전 | 753 | ||
| 7571 |
|
10년 전 | 774 | |
| 7570 |
|
10년 전 | 1296 | |
| 7569 | 10년 전 | 1530 | ||
| 7568 |
this1mg
|
10년 전 | 1034 | |
| 7567 |
|
10년 전 | 745 | |
| 7566 | 10년 전 | 907 | ||
| 7565 |
Angel하늘
|
10년 전 | 972 | |
| 7564 |
seoldi
|
10년 전 | 1217 | |
| 7563 |
|
10년 전 | 1355 | |
| 7562 |
멋진남자임
|
10년 전 | 2058 | |
| 7561 | 10년 전 | 688 | ||
| 7560 |
leeleeleelee
|
10년 전 | 885 | |
| 7559 | 10년 전 | 5021 | ||
| 7558 |
RinaP
|
10년 전 | 763 | |
| 7557 |
|
10년 전 | 1226 | |
| 7556 | 10년 전 | 1180 | ||
| 7555 |
hyohyojj1234
|
10년 전 | 1643 | |
| 7554 | 10년 전 | 1079 | ||
| 7553 |
senseme
|
10년 전 | 1325 | |
| 7552 |
ehdltdoit
|
10년 전 | 1421 | |
| 7551 |
|
10년 전 | 1808 | |
| 7550 |
leeleeleelee
|
10년 전 | 1570 | |
| 7549 | 10년 전 | 2404 | ||
| 7548 | 10년 전 | 1823 | ||
| 7547 |
멋진남자임
|
10년 전 | 1945 | |
| 7546 | 10년 전 | 985 | ||
| 7545 |
ILMare1003
|
10년 전 | 1265 | |
| 7544 |
|
10년 전 | 1224 | |
| 7543 | 10년 전 | 871 | ||
| 7542 | 10년 전 | 644 | ||
| 7541 |
울라라라우
|
10년 전 | 851 | |
| 7540 | 10년 전 | 1587 | ||
| 7539 | 10년 전 | 914 | ||
| 7538 |
|
10년 전 | 1822 | |
| 7537 | 10년 전 | 3599 | ||
| 7536 |
Gaumi
|
10년 전 | 1396 | |
| 7535 |
프로그램은어려워
|
10년 전 | 1251 | |
| 7534 |
senseme
|
10년 전 | 1196 | |
| 7533 | 10년 전 | 1180 | ||
| 7532 | 10년 전 | 841 | ||
| 7531 | 10년 전 | 2032 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기