As I begin to delve into learning a Responsive CSS Framework, I've decided to do a comparison between Foundation 4, Gumby, and Bootstrap on my own.
I had success running Foundation 4 and Bootstrap, but unfortunately Gumby didn't cooperate.
Upon including the framework files, my web page just kept loading endlessly. After some investigation, I discovered that the issue lies with the inclusion of gumby.css
<html>
<head>
<link rel="stylesheet" type="text/css" href="css/gumby.css">
<title>
Title
</title>
</head>
<body>
asd
</body>
</html>
<script type="text/javascript" src="js/main.js"></script>
<script type="text/javascript" src="js/libs/gumby.min.js">
</script><script type="text/javascript" src="js/libs/jquery-1.9.1.min.js"></script>
<script type="text/javascript" src="js/libs/modernizr-2.6.2.min.js"></script>
It seems likely that I may have included incorrect files causing this dilemma, does that sound plausible?