-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
56 lines (45 loc) · 1.79 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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<title>Mixcloud Lazy DJ</title>
<link rel="stylesheet" type="text/css" href="main.css" />
<meta name="viewport" content="width=device-width,initial-scale=1" />
</head>
<body>
<div id="logo">
<img src="logo.png" alt="logo" />
<div id="loader" style="visibility: hidden;"></div>
</div>
<div id="search">
<div id="search-box">
<input id="search-input" type="text" title="Artist - Title" class="show-hint" />
</div>
<a href="#" id="search-button" class="button">Search</a>
</div>
<ul id="results">
</ul>
<div id="selected-result" style="display: none;">
<h3></h3>
<h4></h4>
</div>
<div id="playlist" style="display: none;">
</div>
<div id="playlist-not-found" style="display: none;">
<h3>No tracks were found</h3>
</div>
<a href="#" id="start-again-button" style="display: none;" class="button">Start again</a>
<script src="jquery-1.4.2.min.js" type="text/javascript"></script>
<script src="jquery.formHints.js" type="text/javascript"></script>
<script src="main.js" type="text/javascript"></script>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-4415034-11']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</body>
</html>