-
Notifications
You must be signed in to change notification settings - Fork 0
/
search.html
59 lines (57 loc) · 2.21 KB
/
search.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico">
<title>Search for your favorite song</title>
<script src="https://unpkg.com/sweetalert/dist/sweetalert.min.js"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.11.2/css/all.css" integrity="sha256-46qynGAkLSFpVbEBog43gvNhfrOj+BmwXdxFgVK/Kvc=" crossorigin="anonymous" />
<link rel="stylesheet" href="assets/css/main.css">
<script
src="https://code.jquery.com/jquery-3.4.1.min.js"
integrity="sha256-CSXorXvZcTkaix6Yvo6HppcZGetbYMGWSFlBw8HfCJo="
crossorigin="anonymous"></script>
</head>
<body>
<header>
<a href="/v11-geckos-team-10/index.html">
<h1 class="header_title">
<span>B<span style="font-weight:lighter">VOICE</span></span>
</h1>
</a>
<button class="hamburger">
<div class="line"></div>
<div class="line"></div>
<div class="line"></div>
</button>
<nav>
<ul>
<div class="closeNavButton">×</div>
<li><a href="/v11-geckos-team-10">Home</a></li>
<li><a href="/v11-geckos-team-10/about.html">About</a></li>
<li><a href="/v11-geckos-team-10/contact.html">Contact</a></li>
<li><a href="/v11-geckos-team-10/search.html">Search</a></li>
</ul>
</nav>
</header>
<div id="search">
<div class="header">
<div class="top">
<h1>Search for a song!</h1>
</div>
<div class="main">
<form action="#">
<input id='search_input' type="text" placeholder="Search"><br/>
<button id='search_button'>Search</button>
</form>
</div>
</div>
<main id='search_container'>
</main>
</div>
<script src='js/fetcher.js'></script>
<script src="js/search.js"></script>
</body>
</html>