-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
134 lines (126 loc) · 4.35 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
name="description"
content="Music information available by artist search or song title search"
/>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/css/materialize.min.css"
/>
<link rel="stylesheet" href="./assets/css/style.css" type="text/css" />
<title>MTHSY Music Search</title>
</head>
<body>
<nav>
<div class="nav-wrapper">
<a id="brand-logo" class="brand-logo"> IT'S MTHSY MUSIC!</a>
<ul id="nav-mobile" class="right hide-on-med-and-down">
<li>
<a href="./assets/githubindex.html" class="aboutme">About Us</a>
</li>
</ul>
</div>
</nav>
<ul id="slide-out" class="sidenav">
<li>
<a href="./assets/githubindex.html" class="aboutme">About Us</a>
</li>
</ul>
<a href="#" data-target="slide-out" class="sidenav-trigger"></a>
<br />
<main id="main-content" class="row">
<div class="input-field col s12 m5">
<input id="artistinput" class="materialize-input" type="text" />
<label id="textarea1" for="artistinput">Find an artist!</label>
<button id="artistbuttons" class="btn artistbutton">Search!</button>
</div>
<div class="col s12 m2">
<!-- Dropdown Trigger -->
<button
class="dropdown-trigger btn"
id="historybutton"
href="#"
data-target="dropdown1"
>
🔎 History
</button>
<!-- Dropdown Structure -->
<ul id="dropdown1" class="dropdown-content">
<!-- dynamically generate search history list in js to display search history artists and song titles as the list grows -->
</ul>
</div>
<div class="input-field col s12 m5">
<input id="titleinput" class="materialize-textarea" type="text" />
<label id="textarea1" for="titleinput">Find a song title!</label>
<button id="titlebuttons" class="btn titlebutton">Search!</button>
</div>
<section class="container" id="displayinfo">
<div class="row">
<div
class="card-panel pink lighten-5 col s12 m6"
id="lastFMInfo"
></div>
<ul class="col s12 m6" style="list-style-type: none">
<li id="songsuggestion1"></li>
<li class="video-container">
<iframe
id="YouTubeVideo"
style="display: none"
height="500"
width="100%"
>
</iframe>
</li>
</ul>
</div>
<br />
<ul>
<li id="concertevent"></li>
<li id="concertdate"></li>
<li id="concertname"></li>
<li id="venuename"></li>
<a li id="concerturl"></a>
</ul>
<!-- materialize's card-panel if we have time to put concert into in a box -->
<!-- <div class="row">
<div class="col s12 m5">
<div class="card-panel pink" id="ticketmasterInfo">
<ul class="col s6" style="list-style-type: none">
<li id="concertevent"></li>
<li id="concertdate"></li>
<li id="concertname"></li>
<li id="venuename"></li>
<a li id="concerturl"></a>
</ul>
</div>
</div>
</div> -->
</section>
</main>
<footer>
Made by MTHSY <br />
Madeleine Harris, Terry Kim, Hunter O'Neal, Serraiah Floyd, Yohannes
Anbessa
</footer>
<br />
<div id="modal" class="modal">
<div class="modal-content">
<h4>That's not right....</h4>
<p>Please check that your MTHSY music search is spelled correctly</p>
</div>
<div class="modal-footer">
<a href="#!" class="modal-close waves-effect waves-green btn-flat"
>Agree</a
>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/js/materialize.min.js"></script>
<script src="./assets/js/script.js"></script>
</body>
</html>