-
Notifications
You must be signed in to change notification settings - Fork 0
/
search_song.html
42 lines (42 loc) · 1.31 KB
/
search_song.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
<!DOCTYPE html>
<html>
<head>
<title>Tonus - connecting through music</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div class="tonus-entry">
<h1 class="tonus-title">Tonus</h1>
<h2 class="tonus-subtitle">Connecting through music</h2>
</div>
<div class="player">
<div class="add-song">
<div class="search">
<div class="search-input">
<form action="/">
Search: <input type="text" name="search-youtube">
<input type="submit" value="Submit">
</form>
</div>
<ul class="playlist">
<li class="song">
<div class="add-song">+</div>
<div class="thumbnail">
<iframe width="560" height="315" src="https://www.youtube.com/embed/oMV3ofNrzak" frameborder="0" allowfullscreen></iframe>
<div class="play-button"></div>
</div>
<div class="song-details">
<div class="song-title">Rhye - Summer Days</div>
</div>
</li>
</ul>
</div>
</div>
<div class="menu-bar">
<div class="menu-explore"><a href="explore.html"><img src="assets/explore_grey.png">Explore</a></div>
<div class="menu-add-song"><a href="search_song.html"><img src="assets/plus.png">Add Song</a></div>
<div class="menu-profile"><a href="profile.html"><img src="assets/profile_grey.png">Profile</a></div>
</div>
</div>
</body>
</html>