^ Zona Info: June 2017

Tag Html image

Zona Info | Ilmu Komputer |  Juni 29, 2017
Post by: Ian

Tag Html image
Contoh:
<img src="smiley.gif" alt="Smiley face" height="42" width="42">
Preview:
Smiley face :)

Tag Html Option

Zona Info | Ilmu Komputer |  Juni 29, 2017
Post by: Ian

Tag Html option
Contoh:
<form action="burungselecta.php">
    <select name="Burung">
        <option>Kenari</option>
        <option>Love Bird</option>
        <option>Glatik</option>
        <option>Murai</option>
        <option>Jalak</option>
        <option value="pooch" selected>Burung</option>
    </select>

    <select name="cat">
        <option label="Caracal" value="Caracal caracal"></option>
        <option label="Clouded leopard" value="Neofelis nebulosa"></option>
        <option label="Fishing cat" value="Prionailurus viverrinus"></option>
        <option label="Marbled cat" value="Pardofelis marmorata"></option>
        <option label="Serval" value="Leptailurus serval"></option>
        <option label="Ocelot" value="Leopardus pardalis"></option>
    </select>

    <input type="submit">
</form>
Preview:

Tag Html tr

Zona Info | Ilmu Komputer |  Juni 29, 2017
Post by: Ian

Tag Html tr
Contoh:
<table>
    <tr>
        <th>Pertanyaan</th>
        <th>Jawaban</th>
        <th>Koreksi?</th>
    </tr>
    <tr>
        <td>Apa Negara anda?</td>
        <td>Indonesia</td>
        <td>Ya</td>
    </tr>
    <tr>
        <td>Huruf pertama Indonesia</td>        <td>I</td>
        <td>Benar</td>
    </tr>
</table>
Preview:
Pertanyaan Jawaban Koreksi?
Apa Negara anda? Indonesia Ya
Huruf pertama Indonesia I Benar

Tag Html th

Zona Info | Ilmu Komputer |  Juni 29, 2017
Post by: Ian

Tag Html th
Contoh:
<table>
    <tr>
        <th rowspan="2" scope="row">Karnivora</th>
        <td>Harimau</td>
        <td>Singa</td>
        <td>Ular</td>
        <td>Buaya</td>
    </tr>
    <tr>
        <td>Srigala</td>
        <td>Anjing</td>
        <td>Kucing</td>
        <td>Heyna</td>
    </tr>
    <tr>
        <th scope="row">Omnivora</th>
        <td>Ayam</td>
        <td>Merpati</td>
        <td>Bebek</td>
        <td>Angsa</td>
    </tr>
</table>
Preview:
Karnivora Harimau Singa Ular Buaya
Srigala Anjing Kucing Heyna
Omnivora Ayam Merpati Bebek Angsa

Tag Html td

Zona Info | Ilmu Komputer |  Juni 29, 2017
Post by: Ian

Tag Html td
Contoh:
<table>
    <tr>
        <th>Pertanyaan</th>
        <th>Jawaban</th>
        <th>Koreksi?</th>
    </tr>
    <tr>
        <td>Apa Negara anda?</td>
        <td>Indonesia</td>
        <td>Ya</td>
    </tr>
    <tr>
        <td>Huruf pertama Indonesia</td>        <td>I</td>
        <td>Benar</td>
    </tr>
</table>
Preview:
Pertanyaan Jawaban Koreksi?
Apa Negara anda? Indonesia Ya
Huruf pertama Indonesia I Benar

Tag Html area

Zona Info | Ilmu Komputer |  Juni 27, 2017
Post by: Ian

Tag Html area
Contoh:
<map name="atlas">
    <area shape="rect" coords="0,0,115,90" href ="northamerica.html" alt="North America">
    <area shape="poly" coords="113,39,187,21,180,72,141,77,117,86" href="europe.html" alt="Europe">
    <area shape="poly" coords="119,80,162,82,175,102,183,102,175,148,122,146" href="africa.html" alt="Africa">
</map>
Preview:
North America Europe Africa