Sabtu, 14 Mei 2016

Tugas coding 8

<html>
<head>
    <title>Layout 8</title>
</head>
<body>
    <table border="1" width="720px" height="520px">
    <tr><td bgcolor=#F0F rowspan=2 align=center>Daftar isi</td>
    <td bgcolor=red align=center><h3>Banner/Judul</h3></td>
    <td bgcolor=#F0F rowspan=2 align=center>Daftar isi</td></tr>
    <tr><td bgcolor="#green" align=center>
    <p>Body atau contents(isi)</p>
        <p><font color="#006600">Body atau contents(isi)</font></p>
        <p><font color="#CC0000">Body atau contents(isi)</font></p>
        <p><font color="#FFFF00">Body atau contents(isi)</font></p>
        <p><font color="#FF6633">Body atau contents(isi)</font></p>
    </td></tr>
    <tr><td bgcolor=blue colspan=3 align=center>Lain-lain</td></tr>
    </table>
</body>
</html>

Tugas 7


<html>
<Head>
<title>Left Index</title>
</Head>
<body>
<table bgcolor="#red" border="1" width="720px" height="360px">
            <tr><td bgcolor="#blue" rowspan="3" align="bottom" width="120px">
            <ul type="disc">
            <li>Home<br></li>
            <li>Profil<br></li>
            <li>About us<br></li>
            <li>Blog<br></li>
            <li>Contact us</td></li>
            <td align=center>Electronic Shop</td></tr>
            <tr><td bgcolor="#black" align=center>Selamat datang di web kami, penjualan produk online ini adalah yang pertama di kota kami. kualitas dan harga dapat dipercaya langsung saja pesan dan menjadi langganan kami.</td></tr>
            <tr><td align=center>Syahrizatetsuya.blogspot.com/</td></tr>
        </table>
</body>
</html>

Jumat, 04 Maret 2016

Menyajikan Format Gambar Dengan Keterangan

Seperti judul, saya akan membahas coding Menyajikan Format Gambar Dengan Keterangan,
dibawah adalah contoh coding dan Gambarnya :

<html>
<head>
<title>Tugas Gambar</title>
<h2><b>Menyajikan Format Gambar Dengan Keterangan</h2>
</head>
<body>
<img src="agino3.jpg"title="Agi Syahriza"/>
</body>
</html>


Menggabung Gambar Dan Teks,Posisi Terhadap Teks Secara Horisontal

<html>
<head>
<title>Tugas Gambar</title>
<h2><b>Menggabung Gambar Dan Teks,Posisi Terhadap Teks Secara Horisontal</b></h2>
</head>
<body>
<img src="hp agi.jpg" align="top" align="Left"><big><big>HPNya Agi</p>
<img src="hp agi.jpg" align="right" align="bottom" align="right"><big>HPNya Agi 2</p>
</body>
</html>

Menggabung Gambar Dalam Teks,Posisi Terhadap Teks Secara Vertikal

<html>
<head>
<title>Tugas Gambar</title>
</head>
<body>
<h2><b>Menggabung Gambar Dalam Teks,Posisi Terhadap Teks Secara Vertikal</b></h2>
<p><img src="laptopagijer.jpg" width="200" height="150" align="top">Laptop Agi</p>
<p><img src="laptopagijer.jpg" width="200" height="150" align="middle">Laptop Agi 2</p>
<p><img src="laptopagijer.jpg" width="200" height="150" align="bottom">Laptop Agi 3</p>
</body>
</html>