Ilustrasi/joelpantora |
"cara buat tabel"
<!-coba_table.html-->
<html>
<body>
Setiap table dimulai dengan sebuah tag table.
Setiap baris dimulai dengan sebuah tag tr
Setiap data dimulai dengan sebuah tag td<br />
<h4>
Satu Kolom: </h4>
<table border="1">
<tr>
<td>10</td>
</tr>
</table>
<h4>
Satu baris dan tiga kolom: </h4>
<table border="1">
<tr>
<td>10</td>
<td>20</td>
<td>30</td>
</tr>
<h4>
Dua baris dan tiga kolom: </h4>
<table border="1">
<td>10</td>
<td>20</td>
<td>30</td>
</table>
</table>
</body></html>
"cara inpu nama"
<html>
<body>
<script type="text/javascript">
var firstname;
firstname="Joel";
document.write(firstname);
document.write("<br/>");
firstname="Tove";
document.write(firstname);
</script>
<p>The script above declares a variable,assigns a value to it,displays the value,changes the value,and displays the value again.</p>
</body>
</html>
"cara input jurusan"
<html>
<head><title>latihan Dengan Objek Text</title></head>
<body>
<script type="text/javascript">
<!--
function tekan()
{
var jurusanstr = (document.fform.Jurusan.value);
document.fform.Ojurusan.value = juursanstr;
}
//-->
</script>
<form name ="fform">
<H1>Penggunaan Objek Select</h1>
<hr>
<h3>Masukkan Jurusan Di Universitas Ubudiyah Indonesia : <select name=Jurusan"Size="1">
<option value ="Teknik Informatika">/Teknik
Informatika </option>
<option value ="Manajemen Informatika">/Teknik
Informatika </option>
<option value ="Sistem Imformasi">/Teknik
Informatika </option>
<option value ="Teknik Komputer">/Teknik
Informatika </option>
<option value ="Teknik Sipil">/Teknik Sipil
</option>
<option value ="Teknik Kimia">/Teknik Kimia
</option>
<option value ="Teknik Perencanaan Wil.Kota">/Teknik
Perencanaan Wil.Kota </option>
</select>
<p>
<input type="button"value="kirim"onclick="tekan()">
input type="reset"value="ulang">
<H3>Output Jurusan :</H3>
<input type="text"name="Ojurusan"size="30"></form></body></html>
"cara input judul"
<html>
<body>
<script type="text/javascript">
document.write("h1>This is a heading</h1>");
dokument.write("<p>This is a paragraph.</p>");
dokument.write("<p>This is another paragraph.</p>");
</script>
</body>
</html>
0 komentar:
Post a Comment