Are you a web-developer? Do you want to earn more money? Join our affiliate program, offer our hosting to your customers and get paid. Or just switch to our professional hosting for $8.95 per month!

There are two ways of viewing the page as in IE6, IE7 in Internet Explorer 8:

  1. Click on the “Page” > “Compatibility view”
  2. Add a special HTML tag for the page you wish to view as in IE6 or IE7:

    <html>
    <head>
      <!-- Mimic Internet Explorer 7 -->
      <meta 
      http-equiv="X-UA-Compatible" 
      content="IE=EmulateIE7" >
      <title>My Web Page</title>
    </head>
    <body>
      <p>Content goes here.</p>
    </body>
    </html>