contoh sederhana form dalam tablel

<html>

<head>fotmulir godai</font>
<title>godai form</title>
</head>
<body>
<table border="1">
<tr>
<td colspan="2">Ini kolom yang digabung pake colspan</td>
<tr>
</tr>
<tr>
<td>nama :</td><td><input type="text" size="25" /></td>
</tr>
<tr>
<td>pesan :</td><td><input type="textarea" cols="25" rows="25" /> </td>
</tr>
<tr>
<td>password :</td><td><input type="password" size="25" /></td>
</tr>
<tr>
<td>pilihan mata kuliah :</td><td><input type="checkbox"> kalkulus
<input type="checkbox"> isbd
<input type="checkbox"> OOP
<input type="checkbox"> metode numerik</td>
</tr>
<tr>
<td>jenis kelamin :</td><td><input type="radio"> laki-laki
<input type="radio"> perempuan
</td>
</tr>
<tr>
<td>komen lain :</td>
<td>
<input type="text area"></td>
</table>

</body>
</html>




catatan : untuk menghilangkan garis tepi, ubah nilai 1 menjadi 0 pada table border.
Previous
Next Post »