-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathbasics.html
More file actions
30 lines (27 loc) · 844 Bytes
/
basics.html
File metadata and controls
30 lines (27 loc) · 844 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<!DOCTYPE html>
<html>
<head>
<meta content="text/html; charset=utf-8" http-equiv="Content-Type" />
<title>Fancy Progress Bars - Basics Demo</title>
<link href="stylesheets/basics.css" media="screen, projection" rel="stylesheet" type="text/css" />
<!--[if IE]>
<link href="stylesheets/ie.css" media="screen, projection" rel="stylesheet" type="text/css" />
<![endif]-->
</head>
<body>
<h1>Fancy Progress Bars</h1>
<div class="base">
<div class="basics">
<div><span></span></div>
</div>
<div class="striped">
<div><span></span></div>
</div>
<div class="animated">
<div><span></span></div>
</div>
</div>
<script src="javascripts/jquery.js" charset="utf-8"></script>
<script src="javascripts/progress.js" charset="utf-8"></script>
</body>
</html>