40 lines
1.2 KiB
HTML
40 lines
1.2 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="ru">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Quixotic Music</title>
|
|
<link rel="stylesheet" href="style.css">
|
|
<script src="https://telegram.org/js/telegram-web-app.js"></script>
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<header>
|
|
<h1>🎵 Quixotic</h1>
|
|
<p>Найди и скачай музыку из YouTube</p>
|
|
</header>
|
|
|
|
<div class="search-section">
|
|
<div class="search-container">
|
|
<input type="text" id="searchInput" placeholder="Введите название песни..." autocomplete="off">
|
|
<button id="searchBtn">🔍</button>
|
|
</div>
|
|
</div>
|
|
|
|
<div id="loading" class="loading hidden">
|
|
<div class="spinner"></div>
|
|
<p>Поиск...</p>
|
|
</div>
|
|
|
|
<div id="results" class="results-container">
|
|
<!-- Search results will appear here -->
|
|
</div>
|
|
|
|
<div id="noResults" class="no-results hidden">
|
|
<p>Ничего не найдено. Попробуйте другой запрос.</p>
|
|
</div>
|
|
</div>
|
|
|
|
<script src="script.js"></script>
|
|
</body>
|
|
</html> |