-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ba1c4d1
commit f9c4b1c
Showing
6 changed files
with
138 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Web Search</title> | ||
<style> | ||
#searchInputContainer { | ||
display: flex; | ||
padding: 10px; | ||
background-color: #f4f4f4; | ||
} | ||
#searchInput { | ||
flex: 1; | ||
padding: 8px; | ||
font-size: 1em; | ||
} | ||
iframe { | ||
flex-grow: 1; | ||
width: 100%; | ||
border: none; | ||
} | ||
</style> | ||
</head> | ||
<body> | ||
<!-- Tab Bar --> | ||
<div class="tab-bar"> | ||
<button class="tab-button active" data-tab="youtube">YouTube</button> | ||
<button class="tab-button" data-tab="spotify">Spotify</button> | ||
<button class="tab-button" data-tab="qobuz">Qobuz</button> | ||
<button class="tab-button" data-tab="tidal">Tidal</button> | ||
<button class="tab-button" data-tab="deezer">Deezer</button> | ||
<button class="tab-button" data-tab="appleMusic">Apple Music</button> | ||
</div> | ||
|
||
<!-- Search Input --> | ||
<div id="searchInputContainer"> | ||
<input type="text" id="searchInput" placeholder="Enter search query..."> | ||
<button onclick="performSearch()">Search</button> | ||
</div> | ||
|
||
<!-- Iframe for displaying search results --> | ||
<iframe id="searchFrame"></iframe> | ||
|
||
</body> | ||
</html> |