-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
57 lines (44 loc) · 1.84 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>LyricsDo- Lyrics Finder App</title>
<link rel="stylesheet" href="./style.css">
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap"
rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css">
</head>
<body>
<section class="main-section">
<header>
<form class="container" id="lyricsForm">
<h1>LyricsDo</h1>
<p>Find the Lyrics of your favorite song and Keep Humming</p>
<div class="form-combine">
<div class="form-group">
<input type="text" id="searchlyrics" class="input-control" placeholder="Search" autofocus
aria-label="Search Lyrics" />
<i class="fas fa-times clear-search" id="clearSearch"></i>
<i class="fas fa-check-circle"></i>
<i class="fas fa-exclamation-circle"></i>
<small>Error message</small>
</div>
<button type="submit" class="btn" id="btn" aria-label="Search Button">Search</button>
</div>
</form>
</header>
<ul class="lyricsResult" id="lyricsResult"></ul>
<div class="lyricsResult" id="lyricsRecommendation">
</div>
<div id="lyrics">
</div>
<div id="lyricsModal" class="modal">
<div class="modal-content">
<div class="loader" style="display: none;">Loading...</div>
</div>
</div>
</section>
<script src="./scripts.js"></script>
</body>
</html>