As I work on constructing a website using a combination of HTML5, CSS3, and jQuery, I have encountered an issue when trying to view the page in Internet Explorer X. Despite my efforts to troubleshoot by clearing the cache and adjusting security settings, the page remains invisible when inspected through developer tools.
Interestingly, the CSS is being loaded from a local folder and properly linked since the entire page displays correctly in other browsers. After researching online for solutions, I am still puzzled as the code appears visible in the HTML and CSS tab but fails to render on IE X. Any insights on what might be causing this discrepancy?
This is part of my head section:
<head>
<meta content="text/html; charset=utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Dashboard</title>
<link href="Content/css/normalize.css" rel="stylesheet" type="text/css">
<link href="Content/css/styles.css" rel="stylesheet" type="text/css">
<script src="http://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.9.1.js"></script>
</head>