I am looking to synchronize my design for older browsers like IE7 and above. I have designed the layout specifically for these browsers, and after researching, I found a tool that uses Javascript to implement the code. Is there an alternative method to achieve this?
Below is my HTML code:
<!DOCTYPE html>
<html lang="en-us">
<head>
<title>Nitro Data Networks Teleserv Corporation</title>
<meta name="viewport" content="width=device-width">
<meta charset="utf-8">
<link href='http://fonts.googleapis.com/css?family=Oswald' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Dosis' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Raleway' rel='stylesheet' type='text/css'>
<link rel="stylesheet" type="text/css" href="http://nitrodatanetworks.com/assets/main.css"/>
<link rel="stylesheet" type="text/css" href="http://nitrodatanetworks.com/assets/contact.css"/>
<script src="http://nitrodatanetworks.com/assets/modernize.js.css"/>" type="text/javascript"></script>
</head>
<body>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', '--snip--', '--snip--');
ga('send', 'pageview');
</script><div id="wrapper">
<div id="header">
<ul>
<a href="http://nitrodatanetworks.com/index.php"> <li>
<img src="https://cdn2.iconfinder.com/data/icons/pittogrammi/142/65-32.png">Home</a></li>
<a href="http://nitrodatanetworks.com/index.php/welcome/login"> <li><img src="https://cdn2.iconfinder.com/data/icons/pittogrammi/142/91-32.png">Login</a></li>
<a href="http://nitrodatanetworks.com/index.php/welcome/profile"> <li><img src="https://cdn2.iconfinder.com/data/icons/pittogrammi/142/88-32.png"> Profile</li>
<a href="http://nitrodatanetworks.com/index.php/welcome/service"> <li><img src="https://cdn2.iconfinder.com/data/icons/pittogrammi/142/16-32.png">Services</li>
<a href="http://nitrodatanetworks.com/index.php/welcome/contact"> <li><img src="https://cdn2.iconfinder.com/data/icons/pittogrammi/142/04-32.png">Contact us</a></li>
<div id="social">
<li>Like Us!<img src="https://cdn1.iconfinder.com/data/icons/social_balloons/48px/social_balloon-14.png"></li>
<li>Tweet!<img src="https://cdn1.iconfinder.com/data/icons/social_balloons/48px/social_balloon-05.png"></li>
<li>Plus!<img src="https://cdn1.iconfinder...
My HTML looks like it could use some love.
#dots {
display: block;
width: 50%;
}
#button:hover {
color: purple;
background-color: silver;
}