HTML1200: webs.com is on the Internet Explorer Compatibility View List ('C:\Users\Kolink\AppData\Local\Microsoft\Internet Explorer\IECompatData\iecompatdata.xml').
index.htm
HTML1527: DOCTYPE expected. The shortest valid doctype is "<!DOCTYPE html>
".
index.htm, line 1 character 1
The first problem can be fixed by adding this to your <head>
:
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
The second can be fixed by adding <!DOCTYPE html>
to the start of your page. Not having a doctype is something from last milennium...