<!-- Verstecken für ältere Browser --
today = new Date()
if(today.getMinutes() < 10){
pad = "0"}
else
pad = "";
document.write ;if((today.getHours() >=7) &&
(today.getHours() <=12)){
document.write("<h2> Bom dia!</h2>") //nach 6 Uhr bis 12 Uhr
}
if((today.getHours() >=13) && (today.getHours() <=17)){
document.write("<h2> Boa tarde!</h2>") // nach 13 Uhr bis 18 Uhr
}
if((today.getHours() >=18) && (today.getHours() <=23)){
document.write("<h2> Boa noite!</h2>") //nach 17 Uhr bis 23 Uhr
}
if((today.getHours() >=0) && (today.getHours() <=4)){
document.write("<h2> Boa noite!</h2>")
}
if((today.getHours() >=5) && (today.getHours() <=6)){
document.write("<h3> Oi, madrugador/a !</h3>")
}
// -- Ende verstecken -->
