<html>
<body>
<script type="text/javascript">
document.write("<h1>Hello World!</h1>")
</script>
</body>
</html>
<body>
<script type="text/javascript">
document.write("<h1>Hello World!</h1>")
</script>
</body>
</html>
<script type="text/javascript">
$(document).ready(function(){
//kode perintah untuk menggulung halaman ke bawah
$('a.scrollToBottom').click(function(){
$('html, body').animate({scrollTop: $(document).height()}, 'slow');
return false;
});
//kode perintah untuk menggulung halaman ke atas
$('a.scrollToTop').click(function(){
$('html, body').animate({scrollTop:0}, 'slow');
return false;
});})</script>
<script type="text/javascript">
$(window).load(function(){
//for each description div...
$('div.description').each(function(){
//...set the opacity to 0...
$(this).css('opacity', 0);
//..set width same as the image...
$(this).css('width', $(this).siblings('img').width());
//...get the parent (the wrapper) and set it's width same as the image width... '
$(this).parent().css('width', $(this).siblings('img').width());
//...set the display to block
$(this).css('display', 'block');
});
$('div.wrapper').hover(function(){
//when mouse hover over the wrapper div
//get it's children elements with class descriptio
//and show it using fadeTo
$(this).children('.description').stop().fadeTo(500, 0.7);
},function(){
//when mouse out of the wrapper div
//use fadeTo to hide the div
$(this).children('.description').stop().fadeTo(500, 0);
});
});
</script>
<style>
div.wrapper{
position:relative; /* important(so we can absolutely position the description div */
}
div.description{
position:absolute; /* absolute position (so we can position it where we want)*/
bottom:0px; /* position will be on bottom */
left:0px;
display:none; /* hide it */
/* styling bellow */
background-color:black;
font-family: 'tahoma';
font-size:15px;
color:white;
}
div.description_content{
padding:10px;
}
</style>
<div class="wrapper">
<img src="url gambar anda" /><div class="description">
<div class="description_content">
Masukkan keterangan gambar disini</div>
<br /></div>
</div>Gambar berwarna merah isi dengan url gambar, sementara yang berwarna biru silahkan isi dengan keterangan dari gambar. Cukup rumit memang, tapi hasilnya hebring!
Pernah mendengar kata form?<input type="text" name="var1" size=# maxlength=#><input type="radio" checked name="nama"> <input type="checkbox" name="nama"> <select name="jenis"><option value="sub">pilihan1</option> <option value="sub">pilihan2</option></select> <button>OK</button><input type="reset"><textarea cols="55" rows="5"></textarea><input type="password" /> <input type="file" />| baris 1 kolom 1 | baris 1 kolom 2 | baris 1 kolom 3 |
| baris 2 kolom 1 | baris 2 kolom 2 | baris 2 kolom 3 |
| baris 3 kolom 1 | baris 3 kolom 2 | baris 3 kolom 3 |
<table border="1">
<tr>
<td>baris 1 kolom 1</td>
<td>baris 1 kolom 2</td>
<td>baris 1 kolom 3</td>
</tr>
<tr>
<td>baris 2 kolom 1</td>
<td>baris 2 kolom 2</td>
<td>baris 2 kolom 3</td>
</tr>
<tr> <td>baris 3 kolom 1</td>
<td>baris 3 kolom 2</td>
<td>baris 3 kolom 3</td>
</tr>
</table>border="nilai"| baris 1 kolom 1 | baris 1 kolom 2 | baris 1 kolom 3 |
| baris 2 kolom 1 | baris 2 kolom 2 | baris 2 kolom 3 |
| baris 3 kolom 1 | baris 3 kolom 2 | baris 3 kolom 3 |
| baris 1 kolom 1 | baris 1 kolom 2 | baris 1 kolom 3 |
| baris 2 kolom 1 | baris 2 kolom 2 | baris 2 kolom 3 |
| baris 3 kolom 1 | baris 3 kolom 2 | baris 3 kolom 3 |
<table border=2>
<tr>
<th>header1</th>
<th>header2</th>
<th>header3</th>
</tr>
<tr>
<td>baris 1 kolom 1</td>
<td>baris 1 kolom 2</td>
<td>baris 1 kolom 3</td>
</tr>
<tr>
<td>baris 2 kolom 1</td>
<td>baris 2 kolom 2</td>
<td>baris 2 kolom 3</td>
</tr>
</table>| header1 | header2 | header3 |
|---|---|---|
| baris 1 kolom 1 | baris 1 kolom 2 | baris 1 kolom 3 |
| baris 2 kolom 1 | baris 2 kolom 2 | baris 2 kolom 3 |
| header1 | header2 | header3 |
|---|---|---|
| baris 1 kolom 1 | baris 1 kolom 2 dengan colspan | |
| baris 2 kolom 1 | baris 2 kolom 2 | baris 2 kolom 3 |
<table border=2>
<tr>
<th>header1</th>
<th>header2</th>
<th>header3</th>
</tr>
<tr>
<td rowspan="2">baris 1 kolom 1</td>
<td>baris 1 kolom 2</td><td>baris 1 kolom 3</td>
</tr>
<tr>
<td>baris 2 kolom 2</td>
<td>baris 2 kolom 3</td>
</tr>
</table>| header1 | header2 | header3 |
|---|---|---|
| baris 1 kolom 1 dengan rowspan | baris 1 kolom 2 | baris 1 kolom 3 |
| baris 2 kolom 2 | baris 2 kolom 3 |
<table border=2>
<tr>
<th>header1</th>
<th>header2</th>
<th>header3</th>
</tr>
<tr>
<td>baris 1 kolom 1</td>
<td colspanspan="2">baris 1 kolom 2 dengan colspan</td>
</tr>
<tr>
<td>baris 2 kolom 1</td>
<td>baris 2 kolom 2</td>
<td>baris 2 kolom 3</td>
</tr>
</table><img src="blogger.jpg"><img border="0" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhXD0zOL7DHSymvbUT7M3rd7f5up3dHaVfVyj9eIv-QgvzHb4jcVg9QwZ3dtbRozHY9N8T2yjBG7-0FOFLP_oMVu5PhSIM-M4L3_uxQlgavYciaG7_kv3VUsAiKazuQC2XAHFJl05NneA/s1600/link.gif" />

<img border="0" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhXD0zOL7DHSymvbUT7M3rd7f5up3dHaVfVyj9eIv-QgvzHb4jcVg9QwZ3dtbRozHY9N8T2yjBG7-0FOFLP_oMVu5PhSIM-M4L3_uxQlgavYciaG7_kv3VUsAiKazuQC2XAHFJl05NneA/s1600/link.gif" width="125px" height="90px" />
<img border="0" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhXD0zOL7DHSymvbUT7M3rd7f5up3dHaVfVyj9eIv-QgvzHb4jcVg9QwZ3dtbRozHY9N8T2yjBG7-0FOFLP_oMVu5PhSIM-M4L3_uxQlgavYciaG7_kv3VUsAiKazuQC2XAHFJl05NneA/s1600/link.gif" width="250px" height="150px" /><a href="file.html">klik disini</a><a href="http://www.google.co.id">link</a><a name="namabagian">....</a> ke bagian dokumen tsb. Lalu buatlah link target dengan nama bagian yang tadi telah dibuat. Jangan lupa tambahkan tanda # (pagar) sebelum link targetnya, yang menandakan target ada dalam dokumen yang sama. Contoh linknya:<a href="#namabagian">link</a>target="_blank" pada linknya. Contoh skripnya:<a href="http://jurusan-multimedia.blogspot.com" target="_blank">klik disini</a>
onMouseover="window.location=this.href" pada link yang anda buat.<a href="http://jurusan-multimedia.blogspot.com" onMouseover="window.location=this.href">klik disini</a><a href="http://jurusan-multimedia.blogspot.com" onMouseover="window.location=this.href">klik disini</a><a href="http://jurusan-multimedia.blogspot.com" style="text-decoration:none">klik disini</a><ol>
<li>Item 1</li>
<li>Item 2</li>
<li>Item 3</li>
<li>Item 4</li>
<ol><ol type="i">
<li>Item 1</li>
<li>Item 2</li>
<li>Item 3</li>
<li>Item 4</li>
<ol>| Type | Fungsi |
|---|---|
| a | Membuat type item menjadi abjad huruf kecil |
| A | Membuat type item menjadi abjad huruf besar |
| i | Membuat type item menjadi romawi huruf kecil |
| I | Membuat type item menjadi romawi huruf besar |
<ol start="5">......</ol>| Type | Fungsi |
|---|---|
| cjk-ideographic | Membuat type item menjadi huruf cina |
| circle | Membuat type item menjadi bulat |
| square | Membuat type item menjadi kotak |
| hewbrew | Membuat type item menjadi jenis hebrew |
| armenian | Membuat type item menjadi jenis armenian |
| decimal-leading-zero | Membuat type item menjadi bilangan desimal |
| georgian | Membuat type item menjadi jenis georgian |
| hiragana | Membuat type item menjadi jenis hiragana |
| katakana | Membuat type item menjadi jenis katakana |
| hiragana-iroha | Membuat type item menjadi jenis hiragana iroha |
| inherit | Membuat type item menjadi tipe inherit |