Show message for IE users

html
<style type="text/css">
#ie6 {
	background-color: #FFFFDE;
	border-bottom: 1px solid #EAD92A;
	position: relative;
	top:0;
	left: 0;
	padding: 10px 0;
	width: 100%;
    text-align: center;
}
#ie6 p{
	color: red;
	padding:0 0 0 10px;
}
</style>

<!--HTML-->
<!--Note: Place right above the closing body tag-->
<!--[if IE 6]>
	<div id="ie6-pushdown"></div>
	<div id="ie6">
	<p><b>Your browser is out of date: <a href="http://www.firefox.com">Download Firefox</a></b></p>
	</div>
<![endif]-->

Discuss the Code