-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
61 lines (53 loc) · 2.1 KB
/
index.html
File metadata and controls
61 lines (53 loc) · 2.1 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Spotify List Homework</title>
<!-- CSS sheet -->
<link rel="stylesheet" href="./css/style.css" />
<!-- jQuery Library -->
<script
src="https://code.jquery.com/jquery-3.2.1.min.js"
integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4="
crossorigin="anonymous"></script>
<!-- Main JS App -->
<script type="text/javascript" src="./js/app.js"></script>
<!-- Handlebards cdnjs Cloudflare -->
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/handlebars.js/4.0.8/handlebars.runtime.min.js"></script>
<!-- pre-compiled templates -->
<script src="./js/templates/templatesCompiled.js"></script>
</head>
<body>
<header>
<h1>Search Spotify</h1>
<form id="seach-form" class="form-style" method="post">
<select id="search-category" class="select-items" name="searchCategory">
<option name="" value=""></option>
<option name="artist" value="artist">Artist</option>
<option name="album" value="album">Album</option>
<option name="track" value="track">Track</option>
</select>
<input type="text" class="seach-input" name="searchParam" placeholder="search" value="">
<button id="submit-button" class="button-search" type="submit" name="button">Submit</button>
</form>
<div id="search-param" class="users-search">
<img src="spotify-logo-3.png" width="500px" height="492px" />
</div>
</header>
<section id="results-location">
</section>
<div class="copyright">
<a href="mailto:mark@markledbetterdesigns.com">© Mark Ledbetter</a>
</div>
<div id="modal" class="modal-bkgnd" style="display:none">
<section >
<div class="modal-header">
<h2>More Ablums By<br/>
<span class="artist-clicked"></span></h2>
<button id="close-modal" class="album-buttom close-modal-buttom" type="button" name="button">Close</button>
</div>
<div id="modal-content"></div>
</section>
</div>
</body>
</html>