Kalender
September 2010
S M T W T F S
« Jul    
 1234
567891011
12131415161718
19202122232425
2627282930  
Pencarian
Arsip Kami
Tag Clouds
Pesan Singkat

Your IP
IP
Random Ayat Al-Qur’an
  • Post-doctoral Researchers in Micro- and Nanofluidics, Netherlands
    2 Post-doctoral Researchers in Micro and Nanofluidics, Department of Applied Physics, Eindhoven University of Technology (TU/e), Netherlands Job details: Applicants must hold a PhD degree in physics, mathematics, chemical or mechanical engineering or a related field. Prior experience with numerical or experimental techniques relevant to the dynamics of ultra […]
  • PhD Inverse Modeling for Design and Operation:low-e Climate Adaptive Greenhouses, Netherlands
    PhD Inverse Modeling for Design & Operation:low-e Climate Adaptive Greenhouses, Department of Architecture, Building and Planning, Eindhoven University of Technology (TU/e), Netherlands. Job Description : This project is part of the EOS-LT project Climate Adaptive Glastuinbouw: Inverse Modelling (CAGIM), which will be carried out in collaboration with De […]
  • PhD’s in Measuring, Modelling and Monitoring Chloride Ingress in Cracked Concrete, Netherlands
    2 PhD’s Measuring, modelling and monitoring chloride ingress in cracked concrete, Department of Applied Physics, Eindhoven University of Technology (TU/e), Netherlands. The Department of Applied Physics at Eindhoven University of Technology has 15 professorial chairs with about 65 academic and 60 technical specialists, as well as 110 graduate and 375 undergr […]
  • The Netherlands Fellowship Programmes, Netherlands
    Fellowship  for Shortcourses, PhD and  Masters program at Leiden University, Netherlands Job Description: The Netherlands Fellowship Programmes (NFP) are demand-driven fellowship programmes designed to promote capacity building within organizations in 61 developing countries by providing training and education to their mid-career staff members. For whom 1. A […]
  • 2 PhD Positions: Modelling, Non-destructive Testing and Li-based Remediation, Netherlands
    2 PhD Positions: Modelling, Non-destructive Testing and Li-based Remediation, Department of Applied Physics, Netherlands. The Department of Applied Physics at Eindhoven University of Technology has 15 professorial chairs with about 65 academic and 60 technical specialists, as well as 110 graduate and 375 undergraduate students. The leading research themes co […]

Posts Tagged ‘java’

Pernahkan anda melihat web seperti okezone.com, detik.com dimana ada iklan di bagian atas atau dibawah yang apabila di scroll ke bawah atau ke atas masih tetep menempel diatas ? atau statusbar pada facebook yang menempel di bagian bawah ?

ternyata cara membuatnya mudah saja :

<!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”>
<head>
<title></title>

<style type=”text/css”>
#toolbar {
background:#FBBBD1 none repeat scroll 0%;
border:1px solid #CC0000;
position:absolute;
padding-top:2px;
left:0pt;
position:fixed !important;
position:absolute;
top:0pt;
width:100%;
z-index:1000;
}

* html #toolbar { position: absolute; top: 0px; }
</style>

<script type=”text/javascript”>
function close_toolbar() {
x = document.getElementById(’toolbar’);
x.style.display = “none”;
}
</script>

<body>
<div id=”toolbar”>
<input type=”button” id=”btn-close” value=”X” onclick=”close_toolbar()” />
<span align=”center”>Toolbar yang menempel di atas.</span>
</div>

<?
for ($i = 1; $i < 50; $i++) {
echo “dummy$i<br />\n”;
}
?>

</body>
</html>