11 Mayıs 2025, 15:11
#1 Çevrimdışı
Kullanıcıların profil bilgileri misafirlere kapatılmıştır.
IF Kullanıcılarına Özel Radyo Html Temasi
Merhabalar IF Kullanıcılarına özel yaptıgım html temayi sizlerle paylaşıyorum . Umarım faydalı olur
Kod: Kodu kopyalamak için üzerine çift tıklayın!
<!DOCTYPE html>
<html lang="tr">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>DJ Radyo | Canlı Yayın</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css" />
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html, body {
height: 100%;
font-family: 'Segoe UI', sans-serif;
color: white;
}
body::before {
content: "";
position: fixed;
top: 0; left: 0; right: 0; bottom: 0;
background: url('https://
Bu forumdaki linkleri ve resimleri görebilmek için en az 25 mesajınız olması gerekir. no-repeat center center fixed;
background-size: cover;
filter: brightness(0.5);
z-index: -1;
}
header {
background: rgba(0, 0, 0, 0.7);
padding: 20px;
text-align: center;
position: sticky;
top: 0;
z-index: 10;
}
header h1 {
font-size: 32px;
margin-bottom: 10px;
}
nav a {
color: #fff;
margin: 0 15px;
text-decoration: none;
font-weight: bold;
}
nav a:hover {
color: #ff4081;
}
.hero {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding: 100px 20px;
text-align: center;
}
.broadcast-box {
background-color: rgba(0, 0, 0, 0.65);
padding: 30px;
border-radius: 10px;
max-width: 500px;
width: 90%;
box-shadow: 0 0 10px rgba(0,0,0,0.6);
}
.broadcast-box h2 {
font-size: 36px;
margin-bottom: 10px;
}
.broadcast-box p {
font-size: 16px;
margin-bottom: 20px;
}
audio {
width: 100%;
border-radius: 8px;
}
.social-icons {
text-align: center;
margin: 40px 0 20px;
}
.social-icons a {
color: white;
margin: 0 12px;
font-size: 28px;
transition: 0.3s;
}
.social-icons a:hover {
color: #ff4081;
}
footer {
background-color: rgba(0, 0, 0, 0.7);
text-align: center;
padding: 15px;
font-size: 14px;
}
@
[Üye Olmadan Linkleri Göremezsiniz. Üye Olmak için TIKLAYIN... ] (max-width: 768px) {
.broadcast-box h2 {
font-size: 28px;
}
header h1 {
font-size: 24px;
}
nav a {
margin: 0 8px;
font-size: 14px;
}
}
</style>
</head>
<body>
<header>
<h1>🎶 DJ Radyo</h1>
<nav>
<a href="#">Anasayfa</a>
<a href="#">Yayınlar</a>
<a href="#">İletişim</a>
</nav>
</header>
<main class="hero">
<div class="broadcast-box">
<h2>🔴 Canlı Yayın</h2>
<p>JoyTürk'ten kesintisiz müzik yayınına hoş geldiniz!</p>
<audio controls>
<source src="https://playerservices.streamtheworld.com/api/livestream-redirect/JOY_TURK.mp3" type="audio/mpeg">
Tarayıcınız bu ses dosyasını desteklemiyor.
</audio>
</div>
</main>
<div class="social-icons">
<a href="#"><i class="fab fa-facebook-square"></i></a>
<a href="#"><i class="fab fa-twitter-square"></i></a>
<a href="#"><i class="fab fa-instagram-square"></i></a>
<a href="#"><i class="fab fa-youtube-square"></i></a>
</div>
<footer>
© 2025 DJ Radyo - Tüm Hakları Saklıdır.
</footer>
</body>
</html>