Here is a very easy way to learn how to make link anchors on your website!
This line of code is an example of a inputbox that has a default text in it, until the user clicks on it and then it sets itself to nothing. This is very useful if you want to have default text in your inputbox.
<INPUT type="text" value="Email Address" onfocus="if(this.value==this.defaultValue) this.value='';">
Also if they click out of the box, and they did not fill anything out then click away to another box or area, you can put this in, and it will put whatever you want back in there.
onblur="if(this.value=='') this.value='Email Address';"
Here are the examples on how to check if the user is using any Internet Explorer browser or a specific one with only HTML code.
<!--[if IE]>
This checks for Internet Explorer
<![endif]-->
<!--[if lte IE 6]>
This checks for less than or equal to Internet Explorer 6
<![endif]-->
<!--[if IE 7]>
This checks for Internet Explorer 7
<![endif]-->
Example of use:
<!--[if lte IE 6]>
<link rel="stylesheet" type="text/css" href="/ie6_hacks.css" />
<![endif]-->