Even though I have placed the fonts at the top, my page contents are rendered before the font loads. Here is the code snippet...
<!doctype html>
<html>
<head>
<title>Computer Stuffs Developer Profile</title>
<?php include_once('includes.php');?>
<link rel="stylesheet" href="css/projects.css" />
The includes.php file contains:
<link href='http://fonts.googleapis.com/css?family=Tangerine|Indie+Flower|Kaushan+Script' rel='stylesheet' type='text/css'>
<!--[if IE]>
<script src="js/ie_html5.js"></script>
<![endif]-->
<link rel="icon" type="image/png" href="images/favicon.png" />
<link rel="stylesheet" href="css/universal.css" />
<link rel="stylesheet" href="css/hyperlinks.css" />
Previously, the fonts were below html5.js, but now I have moved it to the top and still facing issues. I have cleared my cache and tried again.