index.html
1.07 KB
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>A jQuery Count UP Timer | Tutorialzine Demo</title>
<!-- Our CSS stylesheet file -->
<link rel="stylesheet" href="http://fonts.googleapis.com/css?family=Open+Sans+Condensed:300" />
<link rel="stylesheet" href="assets/css/styles.css" />
<link rel="stylesheet" href="assets/countup/jquery.countup.css" />
<!--[if lt IE 9]>
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
</head>
<body>
<div id="countdown"></div>
<footer>
<h2><i>Quick Tip:</i> Make A jQuery Count-up Timer</h2>
<a class="tzine" href="http://tutorialzine.com/2012/09/count-up-jquery/">Head on to <i>Tutorial<b>zine</b></i> to download this example</a>
</footer>
<!-- JavaScript includes -->
<script src="http://code.jquery.com/jquery-1.8.2.min.js"></script>
<script src="assets/countup/jquery.countup.js"></script>
<script src="assets/js/script.js"></script>
</body>
</html>