selesai sudah.. gampank sekali bukan?? Tapi itu hanya berhasil bila script anti klik-kanan tersebut dibuat dengan script javascript.
Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.
Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.
Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.
Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.
Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.
http://www.freewebsiteunblocker.co.cc
<div id=”container”>Selesai HTML kita tulis kode CSS-nya.
<h1> <!– Pakai h1 biar SEO bagus–>
Cara membuat 2 Kolom
</h1>
<div id=”menu”>
<ul>
<li><a href=”#”>Home</a></li>
<li><a href=”#”>Tentang</a></li>
<li><a href=”#”>Kerjasma</a></li>
<li><a href=”#”>Apalah</a></li>
<li><a href=”#”>Kontak</a></li>
</ul>
</div>
<div id=”content”>
<h2> <!– Pakai h2 biar SEO bagus–>
Membuat web dengan CSS
</h2>
<p>
Dan bla..bla..bla
</p>
<p>
Ayo donk
</p>
</div>
<div id=”footer”>
Copyright © BlogBintang.com
</div></div>
/* pakai center supaya setiap element ke tengah */Ingin melihat hasilnya? Buat aja sendiri :)
body{text-align: center;background: #B0BFC2; color: #444;}
/*pakai margin: 0 auto supaya ikut ke tangah */
#container{text-align: left;margin: 0 auto; width: 700px;background: #c00}
a:link{color: #175B7D;}
a:visited{color: #600;}
a:hover, a:active{color: #fff;background: #175B7D;}
/* pakai margin:0 supaya h1 merapat*/
h1{background: #D36832; color: #FFF; padding: 20px; margin: 0; border-bottom: 5px solid #387A9B;}
#menu{float: left; width: 130px; display: inline; margin-left: 20px; padding: 15px 0;}
#menu ul{margin: 0;padding: 0;list-style-type: none;text-align: right;}
#menu li{background: url(header-bullet.gif) no-repeat 100% .4em;padding: 0 10px 5px 0;}
#content {float: left;width: 475px;margin-left: 45px;padding: 15px 0;}
#footer{clear: both;background: #387A9B;color: #fff;padding: 5px 10px; text-align: right; font-size: 80%;}
h2{margin-top: 0;color: #B23B00; font-weight: normal;}
Tahukah anda bahwa Wanita tidak butuh Alasan untuk memulai sebuah percakapan dan tidak membutuhkan tujuan akhir untuk menyelesaikan percakapan
<?php get_post_meta($post_id, $key, $single); ?>Ok sebagai contoh kita akan membuat WordPress bekerja untuk menjadi website tipe direktori.
<?phpJika mau lebih dinamis lagi. Kita bisa membuat direktori kita menampilkan link”dofollow” untuk website yang mau membacklink kita. Dan nofollow bagi yang tidak mau.
$key=”URL”;
$dataURL=get_post_meta($post->ID, $key, true);
if(!empty($data))
echo “<a href=’”.$dataURL.”‘ target=’_Blank’>”.$dataURL.”</a>”
?>
<?phpAnda juga dapat membuat wordpress menjadi Iklan Baris. Misalkan jika si pengiklan punya website anda dapat menampilkan url si punya website. Jika si pengiklan tidak punya website maka anda dapat menampilkan tulisan tidak ada. Contohnya ada di http://blog-iklan.com
$dataURL=get_post_meta($post->ID,”URL”, true);
$rel=get_post_meta($post->ID,”rel”, true);
if($rel ==”dofollow”)
echo “<a href=’”.$dataURL.”‘ target=’_Blank’>”.$dataURL.”</a>”
else
echo <a href=’”.$dataURL.”‘ target=’_Blank’ rel=’external nofollow’>”.$dataURL.”</a>”
?>