-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
92 lines (70 loc) · 2.17 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
84
85
86
87
88
89
90
91
92
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title> ArtisTracker </title>
<link rel="stylesheet" href="https://code.jquery.com/qunit/qunit-1.18.0.css">
<link rel="stylesheet" href="http://yui.yahooapis.com/pure/0.6.0/pure-min.css">
<link rel="stylesheet" href="custom.css">
<link href='https://fonts.googleapis.com/css?family=Raleway:300,500,800' rel='stylesheet' type='text/css'>
<script src="http://connect.soundcloud.com/sdk-2.0.0.js">
</script>
</head>
<body>
<!-- Title -->
<div class="title">
<h2>ArtisTracker</h2>
</div>
<!-- Form with Inputs -->
<div class="form">
<form onsubmit="return false">
<p>
Find out more about an Artist. Get Searching
</p>
<br>
<input id="result" type="text" name="search" placeholder="e.g. Foo Fighters"></input>
<br>
<a href="#soundcloudlogo"><button id="search" type="button" name="button">Search</button></a>
</form>
</div>
<!-- Soundcloud -->
<div id="soundcloudlogo" class="soundcloudlogo">
<img class="soundlogo" src="assets/sc_st_white_152x96.png" alt="" />
</div>
<div class="soundcloud">
<ul>
<li id="track"></li>
<li id="trackUser"></li>
</ul>
<button id="play">
<img id="playbutton" src="https://cdn4.iconfinder.com/data/icons/ionicons/512/icon-play-128.png" alt="" />
</button>
<button id="pause">
<img id="pausebutton" src="http://downloadicons.net/sites/default/files/pause-button-icon-76964.png" alt="" />
</button>
<button id="stop">
<img id="stopbutton" src="https://cdn4.iconfinder.com/data/icons/defaulticon/icons/png/256x256/media-stop.png" alt="" />
</button>
</div>
<!-- Instragram -->
<div class="divlogo">
<img class="logo" src="assets/Glyph_Logo_png.png" alt="" />
</div>
<div id="insta"></div>
<!-- QUNIT Test -->
<div class="divbtn">
<button id="hidebtn" onclick="hide()" name="button">Tests</button>
</div>
<div id="hidetest">
<div id="qunit"></div>
<div id="qunit-fixture"></div>
</div>
<!-- Loading JS -->
<script src="https://code.jquery.com/qunit/qunit-1.18.0.js"></script>
<script src="API.js"></script>
<!-- load JS file First -->
<script src="test.js" >
</script>
<!-- load tests after JS -->
</body>
</html>