Logo Webradio

RADIO STUDIO DOC BY GIOVANNI CICCIARELLA

WELCOME TO RADIO STUDIO DOC

Your soundtrack of emotions and inspiration

Chi Siamo

Welcome to Radio Studio Doc, the webradio that turns every moment into a unique experience. With a carefully curated selection of music, from timeless classics to the latest hits, we’re here to accompany you wherever you go, blending music, entertainment, and culture. Let our voices inspire you, discover new sounds, and feel the energy of a radio that speaks straight to your heart. Radio Studio Doc: where music quality meets the passion for communication.

ON AIR

 

In riproduzione: --

▶️ Play 

CONTACT

Nome: Email: Messaggio:Invia 

© 2025 Webradio. All Right Reserved.

Facebook
Twitter
Instagram

let radio = document.getElementById("radio"); let playButton = document.querySelector(".play-btn"); let songTitle = document.getElementById("song-title"); let isPlaying = false; function togglePlay() { if (isPlaying) { radio.pause(); playButton.textContent = "▶️ Play"; } else { radio.play(); playButton.textContent = "⏸ Pause"; } isPlaying = !isPlaying; }