Senin, 07 September 2009

Teknik Web Frame ke 2

index:
<html>
<head><title>text/css</title>
<frameset rows="20%,60%,20%" border="0">
<frame src="judul.html" border="0" scrooling="no">
<frameset cols="20%,60%,20%" border="0">
<frame src="menu.html" border="0">
<frame src="isi.html" border="0" name="frmisi">
<frame src="side.html" border="0">
</frameset>
<frame src="design.html" border="0">
</frame>
</head>
<body>
</body>
</html>

ISI
<html>
<head><title>text/css</title>
</head>
<body bgcolor="ccccff">
<h1>Selamat Datang Di Web Sunardi</h1>
</body>
</html>

JUDUL
<html>
<head><title>text/css</title>
<style type="text/css">
h1 {font-family: courier;
color: violet}
</style>
</head>
<body background="bg.jpg">
<h1><center>SUNSETCOM</center></h1>
</body>
</html>

MENU
<html>
<head><title>text/css</title>
</head>
<body bgcolor="ccccff">
<h2>MENU</h2>
<a href="data.html" target="frmisi">Form Mahasiswa</a><br>
<a href="buku.html" target="frmisi">Kumpulan Buku</a>
</body>
</html>

Data mahasiswa:
<html>
<head><title>Data</title>
</head>
<body>
<form name="formMhs" method="post">
<h3>DATA MAHASISWA</h3>
<table border="0">
<tr><td>NPM</td><td> : </td><td><input type="text" name="txtnpm"></td></tr>
<tr><td>Nama Mahasiswa</td><td> : </td><td><input type="text" name="txtnama"></td></tr>
<tr><td>Prodi</td><td> : </td><td><select name="comboprodi">
<option value="TI">Teknik Informatika</option>
<option value="SI">Sistem Informasi</option>
<option value="MI">Manajemen Informatika</option>
</td></tr>
</table>
</body>
</html>

0 komentar:

Posting Komentar