HTML 프레임 메뉴 구조

Jmnote (토론 | 기여)님의 2016년 6월 28일 (화) 11:37 판 (→‎개요)
(차이) ← 이전 판 | 최신판 (차이) | 다음 판 → (차이)

1 개요[ | ]

HTML 프레임 메뉴 구조
HTML 메뉴 프레임 구조

2 index.php[ | ]

<title>메뉴 프레임</title>
<frameset cols="200,*">
    <frame name="menu" src="menu.php" style='background:#def'>
    <frame name="main" src="home.php">
</frameset>

3 menu.php[ | ]

<!DOCTYPE html>
<meta charset="utf-8" />
<p><a href="home.php" target="main">HOME</a></p>
<p><a href="page1.php" target="main">1페이지</a></p>
<p><a href="page2.php" target="main">2페이지</a></p>

4 home.php[ | ]

<!DOCTYPE html>
<meta charset="utf-8" />

5 같이 보기[ | ]

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}