-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathopen.html
69 lines (59 loc) · 3.3 KB
/
open.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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>RADIO ON-LINE / ANOTHER TIME</title>
<link rel="icon" type="image/x-icon" href="/img/favicom.png"> <!-- Agregar favicon -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css"
integrity="sha384-ez7v/ksdheuhSSU6VeJGJlHT5s2+S2OVHkv/Zz3/dD9yQrqoh+V+3J+UnRuYPWpP" crossorigin="anonymous">
<link rel="stylesheet" href="styles.css"> <!-- Archivo CSS para el estilo -->
</head>
<body>
<header class="text-center bg-dark text-white p-4 d-flex justify-content-between align-items-center">
<img src="img/LOGO.png" alt="Logo de Another Time" class="logo">
<h1 class="flex-grow-1">MEJOR CON MUSICA!!</h1>
<div id="audio-container" class="flex-grow-1 text-center">
<div class="audio-player">
<button id="playButton" class="btn btn-primary play-button">Play</button>
<input type="range" id="progressBar" class="progress-bar" value="0" max="100">
<span id="currentTime">00:00</span> / <span id="duration">00:00</span>
</div>
<audio id="audio" src="https://cp9.serverse.com/proxy/another/stream"></audio>
</div>
</header>
<section id="reseña" class="text-center my-4">
<h2>Another Time: La radio online que combina las mejores décadas de la música</h2>
<p>¡Descarga la aplicación para Android!</p>
<a href="apk/Anothertime Radio station.apk" download="mi_aplicacion.apk" class="btn btn-primary">Descargar Aplicación</a>
</section>
<section id="news-section" class="container my-4">
<h2>Últimas Noticias</h2>
<div id="news-cards" class="row"></div>
<div class="text-center">
<button id="loadMore" class="btn btn-primary my-4">Cargar Más Noticias</button>
</div>
</section>
<footer class="text-center bg-dark text-white p-4">
<p>Derechos de autor © 2023 Another-Time Radio Online. Todos los derechos reservados. Desarrollado por <a href="http://www.net-ing.com.ar" class="text-white">Net-Ing</a></p>
<div class="redes-sociales">
<a href="https://www.facebook.com/radioanothertime.kiry" target="_blank" class="text-white mx-2">
<img src="img/facebook.png" alt="Facebook" class="social-icon">
</a>
<a href="https://twitter.com/tu_cuenta_de_twitter" target="_blank" class="text-white mx-2">
<img src="img/twitter.png" alt="Twitter" class="social-icon">
</a>
<a href="https://instagram.com/tu_cuenta_de_instagram" target="_blank" class="text-white mx-2">
<img src="img/insta.png" alt="Instagram" class="social-icon">
</a>
<a href="https://wa.me/+5493704349892" target="_blank" class="text-white mx-2">
<img src="img/whatts.png" alt="WhatsApp" class="social-icon">
</a>
</div>
</footer>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
<script src="js/scripts.js"></script> <!-- Archivo JavaScript para funcionalidad adicional -->
<script src="js/api.js"></script>
</body>
</html>