-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·75 lines (46 loc) · 2.39 KB
/
index.html
File metadata and controls
executable file
·75 lines (46 loc) · 2.39 KB
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
<!DOCTYPE html>
<html>
<title>Sound Radio</title>
<meta charset="UTF-8">
<link rel="stylesheet" href="style.css"/>
<link rel="icon" href="https://www.irononsticker.com/images/2013/09/13/BLACK%20XO%20RED%20HEART%20HEAT%20TRANSFER.png" type="image/x-icon"/>
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<body>
<!-- Navbar (sit on top) -->
<div class="w3-top">
<div class="w3-bar w3-white w3-wide w3-padding w3-card-2">
<a href="#home" class="w3-bar-item w3-button"><b><img class="icon" src="https://www.irononsticker.com/images/2013/09/13/BLACK%20XO%20RED%20HEART%20HEAT%20TRANSFER.png" type="image/x-icon"/></b> Sound Radio</a>
<!-- Float links to the right. Hide them on small screens -->
<div class="w3-right w3-hide-small">
<a href="#MusicSection" class="w3-bar-item w3-button">Music Section</a>
</div>
</div>
</div>
<!-- Header -->
<header class="w3-display-container w3-content w3-wide" style="max-width:1500px;" id="home">
<img class="w3-image" src="https://static.tumblr.com/69843fa0bb7fd12391c3bc019a13c14a/3p2wbww/TPjo1sd7d/tumblr_static_tumblr_static_8jdnrpf7z0g000wcoc8g44wwg_640.gif" alt="Architecture" width="1500" height="800">
</header>
<!-- Page content -->
<div class="w3-content w3-padding" style="max-width:1564px">
<!-- Search bar inputfield -->
<input type="text" class="w3-input w3-border" id="TextValue" placeholder="Search.. Artist, Band, Track " />
<img src="https://cdn1.iconfinder.com/data/icons/hawcons/32/698956-icon-111-search-128.png" class="searchLogo"/>
<h3 class="w3-border-bottom w3-border-light-grey w3-padding-16">Music</h3>
<div class="w3-container w3-padding-32" id="MusicSection">
<!-- Display Content -->
<div id="display" style="width:100%;"></div>
<!-- Audio Player -->
<div class="music-container">
<audio class="music-player" controls="controls" autoplay="true"></audio>
</div>
</div>
</div>
<!-- Footer -->
<footer class="w3-center w3-black w3-padding-16">
<p>Powered by <a href="#home" title="W3.CSS" target="_blank" class="w3-hover-text-green"><img class="icon" src="https://www.irononsticker.com/images/2013/09/13/BLACK%20XO%20RED%20HEART%20HEAT%20TRANSFER.png" type="image/x-icon"/></a></p>
</footer>
<script src="https://cdnjs.cloudflare.com/ajax/libs/fetch/2.0.3/fetch.min.js"></script>
<script src="https://connect.soundcloud.com/sdk/sdk-3.1.2.js"></script>
<script src="main.js"></script>
</body>
</html>