Style.css not loading in Mozilla Firefox

2.3k views Asked by At

I am working on a website that isn't loading properly on Mozilla Firefox. It loads great on Google Chrome, Opera and Safari but experiencing troubles loading on Mozilla and IE. Using Bootstrap, HTML and CSS for the website.

Website link: http://alumniapp.in

Problems being faced on Mozilla: It loads the Bootstrap Stylesheet but not my style.css. Problems being faced on IE: Does not work at all.

Any insight is extremely helpful. This is the first problem I haven't been able to solve.

Many thanks.

1

There are 1 answers

3
Djordy Winckler On BEST ANSWER

try to change

<link href="style.css" rel="stylesheet" type="style/css">

to

<link rel="stylesheet" type="text/css" href="style.css">

This should fix the problem.