BELAJAR HTML - MEMBUAT BINGKAI - GALERY PHOTO
LANGKAH2:
1. BUKA PROGRAM MS. FRONTPAGE, BUAT NASKAH BARU (KLIK ICON KERTAS)
2. LALU KLIK TAB CODE BAWAH KIRI PROG. FRONTPAGE
3. KETIK BAHASA HTML INI
  
file index.html
   
<html>
<head>
<title>Belajar HTML : farme</title>
</head>
<frameset rows="20%,*,10%" border="1">
    <frame name="header" src="header.html"></frame>
    <frameset cols="25%,*" border="1">
        <frame name="sidebar" src="sidebar.html"></frame>
        <frame name="konten" src="conten.html"></frame>
    </frameset>
    <frame name="footer" src="footer.html"></frame>
</frameset>
</html>
file header.html
<html>
<head>
 <title>header</title>
</head>
<body bgcolor="yellow">
     <h1>ini header</h1>
</body>
</html>
file sidebar.html
<html>
<head>
<title>sidebar</title>
</head>
<body bgcolor="grey">
    <h3>ini sibebar</h3>
</body>
</html>
file conten.html
<html>
<head>
<title>conten</title>
</head>
<body>
   <h3>ini konten</h3>
</body>
</html>
file footer.html
<html>
<head>
<title>footer</title>
</head>
<body>
     <center>
         <h3>ini footer</h3>
     </center>
</body>
</html>






0 komentar:
Posting Komentar