-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
53 lines (38 loc) · 1.03 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Checklist</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div id="container">
<header id="topsearch">
<h1>Find Your Favorite Music Artist!</h1>
<input name="searchbox" id="searchbox" placeholder="Enter artist name here">
<button id="submit" type="submit">Submit</button>
</header>
<div id="homeresults">
<div id="powered">
<p>Powered By AllMusic.com</p>
<!-- <img src="images/allmusic_logo.svg" alt="AllMusic Logo" /> -->
<p><img id="waves" src="images/allmusic_logo_waves.svg" alt="AllMusic Logo Waves" /></p>
<p><img id="tower" src="images/allmusic_logo_a.svg" alt="AllMusic Logo Icon" /></p>
</div>
</div>
<div id="results">
<div class="bio">
<h2></h2>
<p></p>
</div>
<div class="photo">
<img src="" alt="" />
</div>
</div>
</div>
<script src="js/jquery-1.11.3.min.js"></script>
<script type="text/javascript" src="js/scripts.js"></script>
<script>
</script>
</body>
</html>