Selasa, 11 September 2012

Rangkuman 1

<!DOCTYPE html PUBLIC "--//w3c//dtc xhtml 1.0 strict //EN"
"http://www.w3.org/TR/xhtml/DTD/xhtml-strict.dtd">
<html>
     <title> this is my first web page </title>
<head>
<body>
     First Web Page <br />
     FELIX EFENDI
     <p></p>
     <p> UBM </p>
     <p> Yes, that <em>is</em> what I said. How <strong>very</strong> exiting.</p>
     <h1> My First Study </h1>
     <h2> What This Is </h2>
     <p> a simple page put together using HTML </p>
     <h3> why this is </h3>
     <p> To Learn HTML </p>
     <br>
     <ul>
    <li> To Learn HTML </li>
    <li> To show Off </li>
    <li> Because I've fallen in love with my computer and want to give her some HTML loving </li>
     </ul>
     <ol>
    <li> To Learn HTML </li>
    <li> To show Off </li>
    <li> Because I've fallen in love with my computer and want to give her some HTML loving </li>
     </ol>

     <ul>
    <li> To learn HTML</li>
    <li> To show off
     <ol>
    <li>To my boss</li>
    <li>To my friends</li>
    <li>To my cat</li>
    <li>To the little talking duck in my brain</li>
     </ol>
    </li>
    <li>Because I've fallen in love with my computer and want to give her some HTML loving.</li>
     </ul>
     <br>

catatan : <em>...</em> untuk memiringkan tulisan.
             <strong>...</strong> untuk mempertebal tulisan.
             <h1>...</h1>,<h2>...</h2>,<h3>...</h3> untuk memperbesar tulisan.
             <ul>...</ul> untuk simbol seperti bullet list.
             <ol>...</ol> untuk simbol seperti numbered list.

<p><a href="http://www.htmldog.com">HTML DOG</a></p>
     <p><a href="First.html"> HTML DOG</a></p>
     <img src="http://www.htmldog.com/images/logo.gif" width="157" height="70" alt="HTML DOG logo" />
     <img src="file:///C:/Users/Public/Pictures/Sample%20Pictures/Desert.jpg" width="157" height="70" alt="HTML DOG logo" />
     <img src="file:///C:/Users/Public/Pictures/Sample%20Pictures/Jellyfish.jpg" width="157" height="70" alt="HTML DOG logo" />
     <link rel = "shortcut icon" href="file:///C:/Users/Mahasiswa/Downloads/1346817515_ironman_II.ico" />
</body>
</html>

catatan : diatas adalah contoh untuk menyisipkan gambar dan ukuran <img scr="file:(alamat/link gambar).
              <link rel="shortcut icon"href="(alamat/link) untuk mengubah icon .

Gambar saat dijalankan :


~TERIMAKASIH~