phitias

This user hasn't shared any biographical information


Posts by phitias

TERAPI PERNAFASAN UNTUK SAKIT KEPALA & KELETIHAN

Kita memiliki hidung berlubang disebelah kiri dan disebelah kanan. Apakah fungsinya sama untuk menarik dan membuang nafas ? (Our noses have left and right nostrils. Are these nostrils having the same function for inhaling/”breathe- in” and exhaling/”breathe- out”?). -

Sebenarnya fungsinya tidak sama dan dapat kita rasakan bedanya, sebelah kanan mewakili matahari (mengeluarkan panas) dan sebelah kiri mewakili bulan (mengeluarkan dingin). (Actually it’s not the same and we can feel the difference. Accordingly, the right side represents the sun/”heat” and the left side represents the moon/”cold”) . -

(more…)

TERAPI PERNAFASAN UNTUK SAKIT KEPALA & KELETIHAN

Kita memiliki hidung berlubang disebelah kiri dan disebelah kanan. Apakah fungsinya sama untuk menarik dan membuang nafas ? (Our noses have left and right nostrils. Are these nostrils having the same function for inhaling/”breathe- in” and exhaling/”breathe- out”?). -

Sebenarnya fungsinya tidak sama dan dapat kita rasakan bedanya, sebelah kanan mewakili matahari (mengeluarkan panas) dan sebelah kiri mewakili bulan (mengeluarkan dingin). (Actually it’s not the same and we can feel the difference. Accordingly, the right side represents the sun/”heat” and the left side represents the moon/”cold”) . -

(more…)

JIKA ANDA TERBANGUN MENJELANG SUBUH

JIKA ANDA TERBANGUN MENJELANG SUBUH ……

Jika Anda memiliki rutinitas tidur pukul 21.00 dan kadang terbangun di dini hari (sekitar pukul 04.00) karena bermimpi buruk atau kebelet mo ke kamar mandi, ada baiknya jika Anda tidak tidur lagi. Pada saat itu, tubuh Anda sebenarnya sudah 90% recovery (metabolisme sudah komplit). Ketika Anda memaksa tubuh tidur lagi, secara otomatis, seluruh tubuh akan “dipaksa” pula untuk kembali rileks dan tubuh mengulangi proses istirahat dari nol kembali.

(more…)

Border-radius: create rounded corners with CSS3!

W3C has offered some new options for borders in CSS3, of which one is border-radius. Both Mozila/Firefox and Safari 3 have implemented this function, which allows you to create round corners on box-items. This is an example:

Mozilla/Firefox and Safari 3 users should see a nicely rounded box, with a nicely rounded border.

The code for this example above is actually quite simple:

<div style=" background-color: #ccc;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
border: 1px solid #000;
padding: 10px;" >

These different corners can also each be handled on their own, Mozilla has other names for the feature than the spec says it should have though, as it has f.i. -moz-border-radius-topright as opposed to -webkit-border-top-right-radius:

Mozilla/Firefox and Safari 3 users should see a box with a rounded left upper corner. Mozilla/Firefox and Safari 3 users should see a box with a rounded right upper corner. Mozilla/Firefox and Safari 3 users should see a box with a rounded left lower corner. Mozilla/Firefox and Safari 3 users should see a box with a rounded right lower corner.

These are handled by / should be handled by:

  • -moz-border-radius-topleft / -webkit-border-top-left-radius
  • -moz-border-radius-topright / -webkit-border-top-right-radius
  • -moz-border-radius-bottomleft / -webkit-border-bottom-left-radius
  • -moz-border-radius-bottomright / -webkit-border-bottom-right-radius

Sumber : http://www.css3.info

XHTML yang valid di W3C

Berikut ini code xhtml yg valid di w3c :

  • Penulisan tag harus huruf kecil, contoh: <a>,<p>, <br />.
  • Setiap tag <> yang tanpa ada akhiran </> selalu menggunakan “/” pada setiap akhir sebelum “>”. Contoh: <input type=”text” id=”" name=”" />, <br />.
  • Untuk file flash tidak lagi menggunakan <embed></embed>, cukup menulikan seperti: <object width=“145″ height=“146″ type=“application/x-shockwave-flash” data=“file.swf”> <param name=“movie” value=“file.swf” /> <param name=“quality” value=“high” /> <param name=“wmode” value=“transparent” /> </object>
  • Pada awal code html  : <!DOCTYPE html PUBLIC “-//W3C//DTD XHTML 1.0 Transitional//EN” “http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd”> <html xmlns=“http://www.w3.org/1999/xhtml”>
  • Selalu gunakan petik ganda (“”).

Demikian kurang lebih sedikit tentang xhtml, klo ada kurang maafin aja namanya jg masih belajar, he he he.