-->

Notification

×

Iklan

Iklan

Indeks Berita

Tag Terpopuler

TUGAS 3 LATIHAN DASAR-DASAR PEMROGRAMAN WEB

Tuesday, July 31, 2012 | Tuesday, July 31, 2012 WIB Last Updated 2012-10-07T00:36:39Z
Berikut adalah beberapa contoh script yang saya pilih dari tugas 3 saya tentang dasar pemrograman web, soalnya bayangin ja, sekitar 81 halaman yang harus kami coba dan buat screnshotnya...Jadi tidak bisa saya tampilkan semuanya disini, insyaallah akan saya tampilkan link downloadnya secepatmungkin...

Berikut Source Code Latihan Pemrograman Web saya:

<html>
<head>
<title>TUGAS PEMROGRAMAN 3D</title>
</head>
<body>

<h1>ITB BATCH 6</h1>
<h2>ITB BATCH 5</h2>
<h3>ITB BATCH 4</h3>
<h4>ITB BATCH 3</h4>
<h5>ITB BATCH 2</h5>
<h6>ITB BATCH 1</h6>

</body>
<div><center><b>Created by &copy Muhammad Lutfi Indrawan</b></center></div>
</html>


Source Code tersebut akan menghasilkan :

<html>
<head>
<title>TUGAS PEMROGRAMAN 3D</title>
</head>
<body>

<p>Paragraf 1 ITB BATCH 6</p>
<p>Paragraf 2 ITB BATCH 6</p>

</body>
<div><center><b>Created by &copy Muhammad Lutfi Indrawan</b></center></div>
</html>
<html>
<title>TUGAS PEMROGRAMAN 3D</title>
<head>
<style type="text/css">
thead{color:green}
tbody{color:blue}
tfoot{color:red}
</style>
</head>

<body>
<h4> Tabel satu kolom</h4>
<table border="1">
<tfoot>
<tr>
 <td> ITB BATCH 6 </td>
</tr>
</tfoot>
</table>

<h4> Tabel Dua Baris dan Dua Kolom </h4>
<table border="4">
<caption>Tugas PEMROGRAMAN 3D</caption>
<thead>
<tr>
<th bgcolor="00ff00"> Nama Kolom 1 </th>
<th bgcolor="0000ff">Nama Kolom 2 </th>
</tr>
</thead>
<tbody>
<tr bgcolor="ff0000">
 <td> ITB BATCH 6 baris 1, urutan ke-1</td>
 <td> ITB BATCH 6 baris 1, urutan ke-2</td>
</tr>
</tbody>
<tfoot>
<tr>
 <td> ITB BATCH 6 baris 2, urutan ke-1</td>
 <td> ITB BATCH 6 baris 2, urutan ke-2</td>
</tr>
<tfoot>
</table>

</body>
<p></p>
<div><center><b>Created by &copy Muhammad Lutfi Indrawan</b></center></div>
</html>