Postingan

Menampilkan postingan dari Januari, 2016

contoh coding web

Gambar
Layout halaman web Top Index <!DOCTYPE html> <head> <title>top Index</title> </head> <body> <form id="form1" name="form1"method="post"action""> <table width="800"height="532"border="1"align="center"> <tr> <td height="23"align="center"bordercolor="#ffffff"bgcolor="#ffff00"><strong><font size="+5">banner atau iklan</font></strong></td> </tr> <tr> <td height="27"align="center"bgcolor="#ffcccc"><font color="#ff0000">daftar isi atau navigasi</font></td> </tr> <tr> <td height="457"align="center"bgcolor="#ff66cc"><p>Body atau contents(isi)</p> <p><font color="#006600">body atau conten

Coding Tabel Bersarang

Gambar
Ini merupakan cara membuat CODING Table Bersarang (tabel di dalam tabel) <head> <title>TUGAS</title> </head> <body> <table align="center" width=45% height=25% border="5"> <caption>online order</caption> <tr> <th align="center">Desecription</th> <th align="center">Qty</th> <th align="center">price</th> <th align="center">Email Account Note</th> </tr> <tr> <td align="center">Email account</th> <td>10</td> <td>$10.90</td> <td rowspan="5"><table border=1> <tr> <td>Maillbox</td> <td>50GB</td> </tr> <tr> <td>POP5</td> <td>yes</td> </tr> <td>IMAP</td> <td>yes</td> </tr> <tr> <td>An

Cara membuat HTML

Gambar
Cara membuat html coding rowspan dan colspan <html> <head> <title>tabel</title> </head> <h1>berikut contoh tabel dengan rowspan dan cosplan</h1> <table width=80% border=1 cellpadding=0> <tr> <td>baris 1 kolom 1</td> <td>baris 1 kolom 2</td> </tr> <tr> <td colspan=2>baris 2 kolom 1</td> <tr> <td>baris 3 kolom 1</td> <td>baris 3 kolom 2</td> </tr> </table> </body> </html> Hasil