Postingan

Menampilkan postingan dari Januari, 2016

menyajikan desain halaman web dengan konsep tabel

Gambar
top index <!DOCTYPE html> <head> <title> top index </title> </head> <body> <form id="form1" name="form1" method="post action"> <table width="800" height"542" 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"><fontcolor="#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 contents(isi)</font></P> <p...

belajar membuat tabel

Gambar
<html> <head> <title>belajar membuat tabel</title> </head> <body> <table border="1"> <caption>daftar wiraniaga</caption> <tr> <th colspan="2" rowspan="2">wiraniaga</th> <th colspan="3">kota</th> </tr> <tr> <th>semarang</th> <th>kudus</th> <th>solo</th> <tr> <tr> <th rowspan="2">jenis kelamin</th> <th>pria</th> <td align="right">12</td> <td align="right">8</td> <td align="right">17</td> </tr> <tr> <th>wanita</th> <td align="right">20</td> <td align="right">8</td> <td align="right">18</td> </tr> </table> <body> </html>

belajar membuat coding tabel sederhana

Gambar
<html> <head> <title> tabel </title> <caption>nama dan alamat rumah</caption> </head> <body bgcolor="#70DB93"> <table width=60% border=2 cellspacing=2 cellpadding=2> <tr bgcolor="white"> <th align="center">nama</th> <th align="center">alamat rumah</th> </tr> <tr bgcolor="white"> <td align="left">muhammad fadri</td> <td align="center">handil bakti</td> </tr> <tr bgcolor="white"> <td align="left">muhammad aulia rahman</td> <td align="center">persada permai</td> </tr> <tr bgcolor="white"> <td align="left">M.agi sahriza</td> <td align="center">wira bakti</td> </tr> </table> </body> </html>

coding beserta hasilnya

Gambar
<html> <head> <title>tugas</title> </head> <table align="center" border="2" width="40%" height="30%" bgcolor="aquamarine"> <body background="index.jpg"> <caption>online order</caption> <tr> <th align="center">description</th> <th align="center">Qty</th> <th align="center">price</th> <th align="center">email account note</th> </tr> <td bgcolor="white">email account</td> <td align="right">10</td> <td align="right">$9.90</td> <td rowspan="5"><table border="2"> <tr> <td>mailbox</td> <td>10gb</td> </tr> <tr> <td>webmail</td> <td>yes</td> </tr> <tr> <td>pop3</td> <td>yes</td>...