Line 10 it's (,chrome=1 is) deprecated, but it's conceivable some people are still using the chrome frame plug-in for IE (support has stopped but there is still a stable version in use for IE up to version 9). So, if you want to support that (I have no idea what it is, Google - 'Chrome Frame' for details) you can still use that tag and ignore the error - it's not hurting anything. If you want to eliminate the error report, make the tag look like so:
Code:
<meta http-equiv="X-UA-Compatible" content="IE=edge">
IE 9 and less will be fine either way, and IE 10 and up, and all other browsers ignore it.
Line 26 is actually wrong, not an error as far as I and many others who have examined this issue are concerned. But it's possible it's technically an error. Either way it hurts nothing. If you want it to go away change:
Code:
<script type="text/javascript" src="js/selectionscroll/bookmarkscroll.js">
/***********************************************
* Scrolling HTML bookmarks- © Dynamic Drive DHTML code library (www.dynamicdrive.com)
* This notice MUST stay intact for legal use
* Visit Project Page at http://www.dynamicdrive.com for full source code
***********************************************/
</script>
to:
Code:
<script type="text/javascript" src="js/selectionscroll/bookmarkscroll.js">
//***********************************************
//* Scrolling HTML bookmarks- © Dynamic Drive DHTML code library (www.dynamicdrive.com)
//* This notice MUST stay intact for legal use
//* Visit Project Page at http://www.dynamicdrive.com for full source code
//***********************************************/
</script>
Line 35 - There's a technically illegal character in the URL used for the href value of the link tag. It's the | character, which can be replaced by:
%7C
and then validate and still work as the intended href. Change:
Code:
<link href='http://fonts.googleapis.com/css?family=Droid+Serif|Ubuntu' rel='stylesheet' type='text/css'>
to:
Code:
<link href='http://fonts.googleapis.com/css?family=Droid+Serif%7CUbuntu' rel='stylesheet' type='text/css'>
Bookmarks