forked from xxelegyxx/lyric-search
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
45 lines (36 loc) · 1.43 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
<!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">
<title>Lyricboo:Search any song by it's lyrics</title>
<!-- Compiled and minified CSS -->
<script src="https://kit.fontawesome.com/ca89a4b9f5.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/css/materialize.min.css">
<link rel="stylesheet" href="style.css">
<!-- Compiled and minified JavaScript -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/js/materialize.min.js"></script>
</head>
<body>
<header>
<h1>LYRICBOO</h1>
<input id="searchbar" type="text" placeholder="What lyrics are stuck in your head?">
<button id="search-btn"><i class="far fa-search"></i></button>
</header>
<main>
<section id="results" class="hidden">
<div class="row">
<div class="results-header">
<h3>Here are some of the top results!</h2>
</div>
<div class="row">
<div id="card-section" class="col s6">
</div>
<div id="lyrics-section" class="col s6">
</div>
</section>
</main>
<script src="script.js"></script>
</body>
</html>