html - External CSS won't import/load, suddenly? -


all of sudden, stylesheet won't import/link (sorry lack of appropriate terms) on site manage.

here code .... tearing hear out - tips???

<!doctype html><html><head><meta http-equiv="content-type" content="text/html; utf-8">        <head>  <link href='http://fonts.googleapis.com/css?family=cantarell&subset=latin' rel='stylesheet' type='text/css'>  <title>who makes wine?</title>  <link href="styles/style.css" rel="stylesheet" type="text/css" />    <script type="text/javascript">      var _gaq = _gaq || [];    _gaq.push(['_setaccount', 'ua-16645738-4']);    _gaq.push(['_trackpageview']);      (function() {      var ga = document.createelement('script'); ga.type = 'text/javascript'; ga.async = true;      ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';      var s = document.getelementsbytagname('script')[0]; s.parentnode.insertbefore(ga, s);    })();    </script>  <meta name="viewport" content="width=device-width">   </head>

i saw error find , remove margin: 0;i , work fine. can find @ beginning. cheers :)


Comments

Popular posts from this blog

tcpdump - How to check if server received packet (acknowledged) -