Every hour, 2 women raped in India

2 12 2008

NEW DELHI – Every hour average, two women raped in India. According to the National Crime Records Bureau (NCRB), during 2007 occurred 20,737 rapes in India.

More mengebohkan of 133 elderly women also become victims of rape during the past year. Baca entri selengkapnya »





ie css hack

7 11 2008

nge-hack tampilan CSS untuk Internet Explorer (khususnya IE 6 kebawah). Caranya adalah dengan menambahkan tanda underscore pada awal atribut css yang diinginkan khusus untuk IE. Contohnya:

p {
color: #123456; /* firefox dan advance browser bakal pake ini, IE juga */
_color: #654321; /* atribut color diatas bakal ter-override kalo pake IE*/
}

sumber :http://www.codepost.org/browse/snippets/63





free css dropdown menu framework

30 10 2008

Features

  • Modular, with themes. Not only HTML is separated from CSS, but even CSS definitions are categorized into structural and thematic types. Thus creating a new drop-down means creating only a new theme since structure is permanent. What is more, creating a new theme is easy with available templates and takes 10-15 mins.
  • Easily deployable. The code and files are well organized. Available channels to hook up to your CMS or other tools as well as existing websites in XHTML format.
  • Easily transformable. Can be transformed by changing class name only. Available transformations: horizontal, vertical left-to-right, vertical right-to-left, horizontal linear, horizontal upwards.
  • Cross browser. Configurations available for Windows Internet Explorer 5 or later, Mozilla Firefox 1.5 or later, Opera 7 or later, Apple Safari 2 or later.
  • JavaScript only for IE. Minimal JavaScript code only for IE 6 or earlier. Can be used with popular JavaScript libraries Jquery or Scriptaculous. Everything else is pure CSS.
  • Super Fast. Having the above mentioned features it is not affected by any disturbances whatsoever.
  • Continuous development. The project is constantly revised and improved.

download

Perangkat lunak ini berlisensi di bawah Lisensi Publik Umum GNU.

sumber:lwis.net





Pengenalan dan Pengertian HTML

15 10 2008

Sebelum kita melangkah lebih jauh ada baiknya Anda tahu apa itu HTML.

HyperText Markup Language (HTML) adalah sebuah bahasa markup yang digunakan untuk membuat sebuah halaman web dan menampilkan berbagai informasi di dalam sebuah browser Internet. Bermula dari sebuah bahasa yang sebelumnya banyak digunakan di dunia penerbitan dan percetakan yang disebut dengan SGML (Standard Generalized Markup Language), HTML adalah sebuah standar yang digunakan secara luas untuk menampilkan halaman web. HTML saat ini merupakan standar Internet yang didefinisikan dan dikendalikan penggunaannya oleh World Wide Web Consortium (W3C).

Versi terakhir dari HTML adalah HTML 4.01, meskipun saat ini telah berkembang XHTML yang merupakan pengembangan dari HTML.
Baca entri selengkapnya »





contoh drop up menu pake css

14 10 2008

nie tag css nya

body{
background:url(images/bg.gif) repeat-x;
color:#7F7F7F;
font-family:Verdana, Arial, Helvetica,'sans-serif';
font-size:11px;
margin-top:20px;
}
a{
color:#7F7F7F;
}
a:link{
color:#7F7F7F;
}
a:active{
color:#7F7F7F;
}
a:hover{
color:#8e4c34;
}
ul {list-style-type:none; margin:0; padding:0;}
li {margin: 0;}

Baca entri selengkapnya »