Author Archives: ciptariswana

About ciptariswana

Seseorang yang sedang mencoba merintis karir di bidang web developer...

Tips CSS menu dropdown

/* CSS Document *//* Menu Horizontal */ #menu { background-image: url(images/Tjepang_03.jpg);  /* bisa diganti dengan background-color height: 35px; width: 900px; } /* Menu Horizontal */ #wrapper #menu ul{ padding:0; margin:0; list-style:none; } #wrapper #menu ul li{ float:left; position:relative; } #wrapper … Continue reading

Posted in CSS | Tagged | Leave a comment

Tips CSS3 Kolaborasi border-radius n box-shadow

/* Misalkan beri nama class box */ .box { -moz-box-shadow: -10px -10px 0px #000; -moz-border-radius: 5px; padding: 5px; } sisipkan class box pada tag <img class=”box”></img> untuk objek gambar, atau tag <div class=”box”></div> untuk objek content… hasilnya tampak dibawah ini… … Continue reading

Posted in CSS | Tagged | Leave a comment

Tips Coding Upload File

$lokasi_file=$_FILES[‘fupload’][‘tmp_name’];

$tipe_file=$_FILES[‘fupload’][‘type’];

$nama_file=$_FILES[‘fupload’][‘name’]; Continue reading

Posted in CSS | Tagged | Leave a comment

Hello world!

Welcome to WordPress.com. This is your first post. Edit or delete it and start blogging!

Posted in Uncategorized | 1 Comment