Kamis, 08 September 2016

tugas membuat tabel dan spening

<head>
<title>Tabel Dengan Rowspan </title>
</head>
<body>
<table width ="500" border ="1">
<tr>
<th scope ="col">Benua </th>
<th scope ="col">Eropa </th>
</tr>
<tr>
<td rowspan ="4">Negara </td>
<td>Arab saudi </td>
</tr>
<tr>
<td>India</td>
</tr>
<tr>
 <td>Indoensia </td>
</tr>
<tr>
 <td>Singapura </td>
</tr>
<td rowspan ="4"> Eropa </td>
<td>Belanda </td>
</tr>
<tr>
<td>Italia</td>
</tr>
<tr>
 <td>Inggris </td>
</tr>
<tr>
 <td>Jerman </td>
</tr>
</table>
</body>
                                                
Read More

tugas membuat tabel dan speaning

<html>
<head>
<title> Tabel Dengan Colspan </title>
</head>
<body>
<table width ="500" border="1">
<tr>
<th scope="col">perumahan </th>
<th colspan ="4" scope="col>Tipe /luas tanah (m<sup>2</sup>) </th>
</tr>
<tr>
<td>Griya Indah Permai </td>
<td>21 /60 </td>
<td>36 /90 </td>
<td>45 /120 </td>
<td>54 /120 </td>
</tr>
</table>
</body>
</html>            

                                         
Read More

tugas membuat tabel dan spening

<html>
<head>
<title>Tabel Dengan Rowspan </title>
</head>
<body>
<table width ="500" border ="1">
<tr>
<th scope ="col"> Nama Perumahan </th>
<th scope ="col">Tipe / luas tanah (m<sup>2</sup>) </th>
</tr>
<tr>
<td rowspan ="4"> Griya Indah Permai </td>
<td>21 / 60 </td>
</tr>
<tr>
<td>36 /90 </td>
</tr>
<tr>
 <td>45 / 120 </td>
</tr>
<tr>
 <td>54 / 120 </td>
</tr>
</table>
</body>
</html>
                                                

                                   
Read More

Tugas Membuat tabel 2

<html>
<head>
<title>table</title>
</head>
<body>
berikut contoh table dengan rowspan dan colspan
<table width=80% border=2cellspacing=0 cellpadding=0 bgcolor=#33cc66>
<tr bgcolor=blue>
<td> baris 1 kolom 1</td>
<td> baris 1 kolom 2</td>
</tr>
<tr bgcolor=blue>
<td colspan=2>baris2kolom1</td>
</tr>
<tr bgcolor=blue>
<td rowspan =2baris3kolom1</td>
<td>baris3kolom2</td>
</tr>
</table>
</body>
</html>

Read More

Kamis, 01 September 2016

Latihan membuat tabel

<html>
<head>
<title>membuat baris dan kolom</title>
</head>
<body>
<table border = 1 bgcolor = gold>
<tr bgcolor = blue>
<td>baris 1 kolom 1</td>
<td>baris 1 kolom 2</td>
<td>baris 1 kolom 3</td>
</tr>
<tr bgcolor = red>
<td>baris 2 kolom 1</td>
<td>baris 2 kolom 2</td>
<td>baris 2 kolom 3</td>
</tr>
<tr bgcolor = white>
<td>baris 3 kolom 1</td>
<td>baris 3 kolom 2</td>
<td>baris 3 kolom 3</td>
</tr>
</table>
</body>
</html>                   

                      
Read More

tugas membuat tabel 1

<html>
 <head>
 <title>penggunaan ALGIN</title>
 </head>
<body>
<table border="1">
<caption>Daftar wiraning</caption>
<tr>

 <th colspan ="2" rowspan="2">WIRANIAGA</th>

 <th colspan="3">KOTA</th>
</tr>
<tr>
 <th>SEMARANG</th>
 <th>kudus</th><th>solo>
</tr>
<tr>
 <th rowspan ="2">Jenis Kelamin </th>
 <th>Pria</th>
 <td> align= "right"><30</td>
 <td> align= "right"><20</td>
 <td> align= "right"><30</td>
</tr>
<tr>
 <th>wanita</td>
 <td algin="right">20</td>
 <td algin="right">8</td>
 <td algin="right">18</td>
</tr>

</table>
</body>
</html>

                                 
Read More

Format teks

<html>
<head><title>unordered list</title>
</head>
<body>
<b>Macam - macam  phuriperal</b>
<b>   Perangkat Input  </b>
<ul type="square">
<li>Keyboard</li>
<li>mouse</li>
<li>Touchpad</li>
<li>Light Pen</li>
<li>JoyStick</li>
<li>Barcode</li>
<li>Scanner</li>
<li>Camera Digital</li>
<li>mikrofon</li>
<li>Graphics Pads</li>
<li>Pensil</li>
<b>Macam - macam phuriperal</b>
<b>    Perangkat Output </b>
<li>Monitor</li>
<li>Printer</li>
<li>spiker</li>
<li>proyektor</li>
<li>Plotter</li>
</ul type="square">
</body>
</html>
                                                                                
                                            
Read More