
var Digital=new Date()
var hours=Digital.getHours()

//.
if (hours>=5&&hours<=11) 
document.write('<b>Good morning Folks , Welcome to Blue Dolphin tattoo.</b>')
else if (hours==12) 
document.write('<b> Already Noon Folks, Welcome to Blue Dolphin tattoo.</b>')
else if (hours>=13&&hours<=17) 
document.write('<b> Good afternoon Folks, Welcome to Blue Dolphin tattoo.</b>')
else if (hours>=18&&hours<=20) 
document.write('<b> Good evening Folks, Welcome to Blue Dolphin tattoo.</b>')
else if (hours>=21&&hours<=11) 
document.write('<b> Hello Folks, Welcome to Blue Dolphin tattoo.</b>')
else 
document.write('<b> Hmm, not yet sleep , Welcome to Blue Dolphin tattoo.</b>')

