-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
83 lines (69 loc) · 3.12 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
<!DOCTYPE html>
<html lang="en"><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="">
<meta name="author" content="">
<link rel="icon" href="imgs/lastfmmini.png">
<title>myDiscography.fm</title>
<!-- Bootstrap core CSS -->
<!-- <link href="http://getbootstrap.com/dist/css/bootstrap.min.css" rel="stylesheet"> -->
<link href="bootstrap-3.2.0/css/bootstrap.min.css" rel="stylesheet">
<!-- Custom styles for this template -->
<link href="http://getbootstrap.com/examples/starter-template/starter-template.css" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="app_style.css">
<style type="text/css"></style></head>
<body>
<div class="navbar navbar-inverse navbar-fixed-top" role="navigation">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand home" href="#">myDiscography.fm</a>
</div>
<div class="collapse navbar-collapse">
<!-- <ul class="nav navbar-nav">
<li class="home"><a href="#">Home</a></li>
</ul> -->
</div><!--/.nav-collapse -->
</div>
</div>
<div class="container">
<div class="starter-template">
<h1>enter your last.fm username</h1>
<h2 hidden></h2>
<div class="input-group">
<div class="row usernameFormRow">
<div class=".col-md">
<div class="input-group">
<input type="text" class="form-control usernameForm" placeholder="last.fm">
<span class="input-group-btn">
<button class="btn btn-default" type="button">search</button>
</span>
</div><!-- /input-group -->
</div><!-- /.col-md-4 -->
</div><!-- /.row -->
</div>
</div>
<div class="d3-data">
</div>
<div class="d3-data-album">
<h3 hidden class="hiddenTag"></h3>
</div>
</div><!-- /.container -->
<!-- Bootstrap core JavaScript
================================================== -->
<!-- Placed at the end of the document so the pages load faster -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="bootstrap-3.2.0/js/bootstrap.min.js"></script>
<script src="http://d3js.org/d3.v3.min.js" charset="utf-8"></script>
<script type="text/javascript" src="app.js"></script>
<script type="text/javascript" src="app_d3.js"></script>
<script type="text/javascript" src="app_d3_albums.js"></script>
<script type="text/javascript" src="tipsy.js"></script>
</body></html>