-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
52 lines (43 loc) · 1.29 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Discover New music based off of your current tastes and then watch music videos by them!</title>
<link href="https://fonts.googleapis.com/css?family=Bitter|Cabin|Merriweather" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="main.css">
<link rel="stylesheet" type="text/css" href="normalize.css">
</head>
<header>
<h1>Welcome to TunesTree! </h1>
</header>
<body>
<div class="explain">
<h2>Use what you love to branch out and hopefully discover something new and exciting.
</h2>
</div>
<hr>
<div class="search">
<h2>Find New Music</h2>
<h3>Type in the names of one or more musical groups then submit to see your results</h3>
<form class="collect">
<input type="text" id="name" placeholder="e.g The Beatles, The Killers" name="user-favs">
<input type="submit" value="Bring me the tunes!">
</form>
<br>
<br>
<br>
</div>
<div class="templates hidden">
<dl class ="results">
<dt>Artist:</dt>
<dd class="artist"></dd>
<dt>Description:</dt>
<dd class="description"></dd>
<dt>youTube link:</dt>
<dd class="youtube"></dd>
</dl>
</div>
<script type="text/javascript" src="https://code.jquery.com/jquery-3.1.0.js" ></script>
<script src="capstone.1.0.0.js"></script>
</body>
</html>