Blog Deni Mulyadi

Berbagi Ilmu dengan Media Blog

Materi Teori Bahasa dan Automata

Materi tanggal 14-11-2009:

Format File pdf

TEKNIK KOMPILER

16 November, 2009 Ditulis oleh Deni Mulyadi | TBA | | Belum Ada Tanggapan

MATERI REKAYASA PERANGKAT LUNAK (RPL)

1 November, 2009 Ditulis oleh Deni Mulyadi | RPL | | Belum Ada Tanggapan

Pengenalan Perintah Web

1. Ordered List (Daftar Nomor)

contoh:
<ol type = “A”>
<li>Tiga Pemain Sepakbola Indonesia
<ol type = “I”>
<li>Deni Mulyadi</li>
<li>Deni Ganteng</li>
<li>Deni Smart</li>
</ol>
</li>

Keterangan:
Type = “1″ nomor urut 1, 2, 3 dst
type = “I” huruf romawi besar urut I, II, III dst
Type = “i” huruf romawi kecil urut i, ii, iii dst
type = “A” huruf besar urut A, B, C dst
type = “a” huruf kecil urut a, b, c dst

2. Unordered List (Bullet)

contoh:
<ul type = “square”>
<li>Deni Mulyadi</li>
<li>Deni Ganteng</li>
<li>Deni Smart</li>
</ul>

Keterangan:
Type = “circle” tanda lingkaran
Type = “disk” tanda cakram
Type = “square” tanda kotak

3. Check Box

Contoh:
<p>
<input type = “checkbox” name = “c1″>Bakso<br>
<input type = “checkbox” name = “c2″>Karedok<br>
</p>

4. Radio Button

Contoh:
<p>
<input type = “radio” value=”R1″ name = “T1″ checked>Bakso<br>
<input type = “radio” value=”R2″ name = “T1″>Karedok<br>
<input type = “radio” value=”R3″ name = “T1″>Soto<br>
</p>

16 Oktober, 2009 Ditulis oleh Deni Mulyadi | Pemrograman WEB | | Belum Ada Tanggapan