-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
44 lines (38 loc) · 1.48 KB
/
index.html
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<!DOCTYPE html>
<html lang="en">
<head>
<title>Awesome Last.fm thingy</title>
<!-- load google libraries: jQuery and Google-library -->
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
<script type="text/javascript" src="https://www.google.com/jsapi"></script>
<!-- load requied files -->
<script type="text/javascript" src="js/chart.js"></script>
<script type="text/javascript" src="js/engine.js"></script>
<script type="text/javascript" src="js/main.js"></script>
<!-- require styleshet -->
<link rel="stylesheet" href="style/normalize.css" />
<link rel="stylesheet" href="style/style.css" />
</head>
<body>
<div id="first">
<form id="form">
<legend>Awesome Last.fm thingy</legend>
<fieldset>
<label for="username">Enter your Last.fm username</label>
<input type="text" name="username" id="username" />
<input type="submit" id="go" value="Go!" />
</fieldset>
</form>
</div>
<div id="second">
<div id="total"></div>
<div id="progress_bar">
<div id="progress_fill"></div>
</div>
<div id="chart"></div>
<div id="credits">
Created by <a href="https://github.com/tmw">Tiemen Waterreus</a> and <a href="https://github.com/Davidvdv">David van de Vondervoort</a> using the <a href="http://www.last.fm/api">Last.fm API</a>. Sourcecode can be found on <a href="https://github.com/Davidvdv/Last.fm-webservice">GitHub</a>.
</div>
</div>
</body>
</html>