1 / 12

MERANCANG FORM

MERANCANG FORM. Materi Kuliah ke-5. Contoh. Mendefinisikan Form. <html> <head> </head> <body> <form> …… …… …… </form> </body> </html>. Skrip untuk mendefinisikan form. Input Teks. <tr> <td width=200>Nama Lengkap</td> <td width=200> <input type=text name=nama size=20> </td>

jorden-park
Download Presentation

MERANCANG FORM

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. MERANCANG FORM Materi Kuliah ke-5

  2. Contoh

  3. Mendefinisikan Form <html> <head> </head> <body> <form> …… …… …… </form> </body> </html> Skrip untuk mendefinisikan form

  4. Input Teks <tr> <td width=200>Nama Lengkap</td> <td width=200><input type=text name=nama size=20></td> </tr>

  5. Input Password <tr> <td width=200>Password</td> <td width=200><input type=password name=pass size=20></td> </tr>

  6. Input Check Box <tr> <td width=200 valign=top>Hoby</td> <td width=200> <input type=checkbox name=memasak>Memasak<br> <input type=checkbox name=membaca>Membaca<br> <input type=checkbox name=olah raga>Olah Raga<br> <input type=checkbox name=seni>Seni<br> </td> </tr>

  7. Input Radio Button <tr> <td width=200 valign=top>Pendidikan Terakhir</td> <td width=200> <input type=radio value ="D1 Komputer" name=jur>D1 Komputer Profesional<br> <input type=radio value ="D1 Inggris" name=jur>D1 Bahasa Inggris<br> <input type=radio value ="S1 TI" name=jur>S1 Teknik Informatika<br> <input type=radio value ="S1 TE" name=jur>S1 Teknik ElektronikaK<br> </td> </tr>

  8. Input Drop Down <tr> <td width=200 valign=top>Mengenal STTNJ</td> <td width=200> <select name=kenal> <option value="teman">dari teman</option> <option value="internet">internet</option> <option value="televisi">dari televisi</option> <option value="koran">dari surat kabar</option> </select> </td> </tr>

  9. Input Text Area <tr> <td width=200 valign=top>Pesan & Kesan</td> <td width=200><textarea name=kesan rows=5 cols=40></textarea></td> </tr>

  10. Input Command Button <tr> <td width=200></td> <td width=200> <input type=submit value=Setuju name=kirim> <input type=submit value=Batal name=tolak></td> </tr>

  11. <form> <table> <tr> <td width=200>Nama Lengkap</td> <td width=200><input type=text name=nama size=20></td> </tr> <tr> <td width=200>Password</td> <td width=200><input type=password name=pass size=20></td> </tr> <tr> <td width=200 valign=top>Hoby</td> <td width=200> <input type=checkbox name=memasak>Memasak<br> <input type=checkbox name=membaca>Membaca<br> <input type=checkbox name=olah raga>Olah Raga<br> <input type=checkbox name=seni>Seni<br> </td> </tr> <tr> <td width=200 valign=top>Pendidikan Terakhir</td> <td width=200> <input type=radio value ="D1 Komputer" name=jur>D1 Komputer Profesional<br> <input type=radio value ="D1 Inggris" name=jur>D1 Bahasa Inggris<br> <input type=radio value ="S1 TI" name=jur>S1 Teknik Informatika<br> <input type=radio value ="S1 TE" name=jur>S1 Teknik ElektronikaK<br> </td> </tr> <tr> <td width=200 valign=top>Mengenal STTNJ</td> <td width=200> <select name=kenal> <option value="teman">dari teman</option> <option value="internet">internet</option> <option value="televisi">dari televisi</option> <option value="koran">dari surat kabar</option> </select> </td> </tr> <tr> <td width=200 valign=top>Pesan & Kesan</td> <td width=200><textarea name=kesan rows=5 cols=40></textarea></td> </tr> <tr> <td width=200></td> <td width=200><input type=submit value=Setuju name=kirim><input type=submit value=Batal name=tolak></td> </tr> </table> </form> Contoh Listing

  12. Tugas Pertemuan ke-5 • Sebuah Sekolah akan membuka pendaftaran Siswa Baru dengan model Online di Internet. Untuk itu, diperlukan sebuah form untuk input data • Tugas anda adalah membuat sebuah rancangan form isian data untuk pendaftaran siswa baru • Anda bebas untuk memasukkan data apa saja yang menurut anda diperlukan, dengan catatan menggunakan seluruh jenis input data dalam form. • Tugas dikirimkan via email ke ahmadiandianto@yahoo.com selambat-lambatnya tanggal 7 Juli 2008.

More Related