This is an example page. It’s different from a blog post because it will stay in one place and will show up in your site navigation (in most themes). Most people start with an About page that introduces them to potential site visitors. It might say something like this:

Hi there! I’m a bike messenger by day, aspiring actor by night, and this is my website. I live in Los Angeles, have a great dog named Jack, and I like piña coladas. (And gettin’ caught in the rain.)

…or something like this:

The XYZ Doohickey Company was founded in 1971, and has been providing quality doohickeys to the public ever since. Located in Gotham City, XYZ employs over 2,000 people and does all kinds of awesome things for the Gotham community.

As a new WordPress user, you should go to your dashboard to delete this page and create new pages for your content. Have fun!

<!doctype html>
<html lang="es">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
<meta name="theme-color" content="#08298a">
<title> PLAYER 98.3 FM</title>

<link href="css/style.css" rel="stylesheet">
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css" rel="stylesheet">
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.7.1/jquery.min.js"></script>
<script src="js/lunaradio-animado.js"></script>
<style>
html,body{font-family:"Open Sans",sans-serif;height:100%;margin:0;display:flex;flex-direction:column;color:#272829;}
</style>
</head>

<body>
<div style="height:100%">
<button type="button" class="mobile-nav-toggle"><i class="fas fa-bars"></i></button>
<header id="header">
<nav class="nav-menu">
<ul>
<li><a target="_blank" href="https://play.google.com/store/apps/details?id=turadio"><i class="fab fa-google-play"></i> <span>Descarga nuestra APP</span></a></li>
<li><a target="_blank" href="https://api.whatsapp.com/send?phone=592233445566&text=Hola, quiciera saber precios sobre la publicidad "><i class="fas fa-bullhorn"></i><span>Publicidad</span></a></li>
<li><a target="_blank" href="https://www.facebook.com/"><i class="fab fa-facebook-square" alt="Facebook"></i>
<span>Facebook</span></a></li>
<li><a target="_blank" href="https://www.instagram.com/"><i class="fab fa-instagram-square" alt="Instagram"></i>
<span>Instagram</span></a></li>
<li><a href="https://api.whatsapp.com/send?phone=AQUI VA NUMERO&text=Hola escucho la radio" target="_blank"><i class="fab fa-whatsapp-square" alt="Whatsapp"></i>
<span>Whatsapp</span></a></li>
<li><a target="_blank" href="https://www.tiktok.com/es/"><i class="fab fa-tiktok"></i><span>tiktok</span></a></li>
</ul>
</nav>
</header>


<div id="player"></div>
<script>
$("#player").lunaradio({
userinterface: "big", 
backgroundcolor: "rgba(4,15,25,0.9)",
fontcolor: "#ffffff",
hightlightcolor: "#000000", 
fontname: "Saira Condensed", 
googlefont: "Saira+Condensed:wght@100", 
fontratio: "0.4", 
radioname: "MONTE DE LOS OLIVOS", 
scroll: "true", 
coverimage: "https://i.postimg.cc/WbRd2pFf/monte-de-los-olivos-logo.png",
onlycoverimage: "false",
coverstyle: "animated",
usevisualizer: "real", 
visualizertype: "6", 
itunestoken: "1000lIPN", 
metadatatechnic: "fallback", //fallback (usar para zeno)
corsproxy: "",
usestreamcorsproxy: "false",
streamurl: "https://stream.zeno.fm/mbr2qqvxhrhvv",
streamtype: "zeno", //soporta: zeno, icecast2, shoutcast2
idzeno: "mbr2qqvxhrhvv",
icecastmountpoint: "", 
shoutcastpath: "",
shoutcastid: "1", 
metadatainterval: "26000", 
volume: "100",
debug: "false",
autoplay: "true",
displayliveicon: "true",
visualizeropacity: "1.0",
multicolorvisualizer: "true",
color1: "#00FF00",
color2: "#ffff00",
color3: "#FF1F6F",
color4: "#FF1F6F",
});
</script>


<div class="background_hora"><div id="relogio">15:00:05</div></div>
<script>
function reloj() {
let elementoID = document.getElementById('relogio');
let horalocal = new Date().toLocaleTimeString('es');
elementoID.innerHTML = horalocal;
}
setInterval(reloj, 1000);
</script>
</div>


<footer style="display:grid;align-content:end">
<div style="background-color:#222;color:#fff;text-align:center;padding:10px"> 
&copy; Copyright 2024 - <a href="http://www.google.com">Tony Comas</a> 
</div>
</footer>

<script>
$(".mobile-nav-toggle").click(function(){
$("body").toggleClass("mobile-nav-active");
$(".mobile-nav-toggle i").toggleClass("fa-bars fa-times");
});
</script>
</body>
</html>