-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
57 lines (49 loc) · 2.08 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">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="icon" href="favicon.ico" type="image/x-icon" />
<title>Lyrics Finder</title>
<link rel="stylesheet" type="text/css" href="./assets/css/style.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<link href="https://fonts.googleapis.com/css?family=Open+Sans" rel="stylesheet">
</head>
<body>
<div class="container">
<header>
<a href="index.html" aria-label="Go to Homepage"><img src="./assets/img/logo.png" alt="logo"
class="logo"></a>
<h1>Get The Lyrics From Your Favorite Artists</h1>
</header>
<main>
<form id="searchArea">
<input id="songSearch" placeholder="Type an artist name, song title or song text" size="100" required
aria-label="Enter the artist name, songs title or some lyrics text" />
<button id="searchLyrics">Search for Lyrics!</button>
</form>
<div id="lyrics">
<p class="js-error-message hidden error"></p>
<ul id="songInfo">
</ul>
</div>
</main>
<footer>
<p>Created by <a href="https://muzhaqi.com/">Artan Muzhaqi</a> using <a
href="https://www.musixmatch.com/">Musixmatch's</a> & <a
href="https://www.youtube.com">YouTube's </a>API</p>
</footer>
<script src="./assets/js/app.js"></script>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-138168176-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag('js', new Date());
gtag('config', 'UA-138168176-1');
</script>
</body>
</html>