-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
71 lines (67 loc) · 2.53 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Detemsic</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/remixicon/3.5.0/remixicon.css"
integrity="sha512-HXXR0l2yMwHDrDyxJbrMD9eLvPe3z3qL3PPeozNTsiHJEENxx8DH2CxmV05iwG0dwoz5n4gQZQyYLUNt1Wdgfg=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="icon" type="image/x-icon" href="https://www.kunalkcube.tech/tests/new/proimages/favicon.png">
</head>
<body>
<header class="header">
<nav class="navbar">
<div class="logo">
<span>Detemsic</span>
</div>
<div class="menu">
<ul>
<li>
<a href="#">Home</a>
</li>
<li>
<a href="#">About</a>
</li>
<li>
<a href="#">Services</a>
</li>
<li>
<a href="#">Contact</a>
</li>
</ul>
</div>
<div class="menu_button">
<span><i class="ri-menu-4-fill"></i></span>
</div>
</nav>
</header>
<main>
<section class="home">
<div class="music_detection">
<h1>Find a song</h1>
<div class="search_section">
<input type="text" id="search_input" placeholder="Search for a song...">
<button id="search_button">Search</button>
</div>
<button id="mic_button">Search via Mic</button>
</div>
<div class="results_section">
<!-- Display search or recognition results here -->
</div>
</section>
<div id="apiKeyModal" class="modal">
<div class="modal-content">
<span class="close"><i class="ri-close-line"></i></span>
<h2>Enter Your API Key</h2>
<input type="text" id="apiKeyInput" placeholder="Your API Key">
<button id="apiKeySubmit">Submit</button>
<p>Generate your own API Key from Rapid API Key <a href="https://rapidapi.com/apidojo/api/shazam"><i
class="ri-link"></i></a></p>
</div>
</div>
</main>
<script src="script.js"></script>
</body>
</html>