-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5c54e11
commit 1b0de3a
Showing
3 changed files
with
149 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Markmix Radio</title> | ||
<link rel="stylesheet" href="style.css"> | ||
</head> | ||
<body> | ||
<header> | ||
<h1>Markmix Radio</h1> | ||
<p>Celebrating the magic of music and creativity</p> | ||
</header> | ||
|
||
<main> | ||
<figure> | ||
<figcaption>Click on the play button to listen:</figcaption> | ||
<audio controls> | ||
<source src="https://stream.zeno.fm/tylpaba8zmquv" type="audio/mpeg"> | ||
Your browser does not support the audio element. | ||
</audio> | ||
</figure> | ||
|
||
<div class="image-container"> | ||
<img src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgg5fwYDdjqkacCdFi-RkfxVeSzylUPRs7_2z4_-oNeJd7kmHRpjCxpQu5Ti5NrTmAwuMWauugnqM7i9wvsBXqVUyigcojNnA2Ndhtjj1oEypCw2dcxnCkFnF4ZgEwPd2IaRgRKJtPdGBJ0AdUCIJAm3OWFotUa1IH3hvcBWqCyGM8j5tBgFFDin5o/s3264/20240827_122149.png" | ||
alt="Markmix Radio Logo" width="320"> | ||
</div> | ||
|
||
<div class="live-link"> | ||
<p>You can click here to listen <a href="https://zeno.fm/radio/markmix-radio/" target="_blank"><b>live</b></a>.</p> | ||
</div> | ||
|
||
<section class="about"> | ||
<p> | ||
At <b>Markmix Radio</b>, we celebrate the magic of music and creativity! Tune in to discover a diverse mix of sounds from talented artists around the world. | ||
We believe everyone deserves a chance to shine, which is why we invite you to submit your songs and be part of our vibrant community. | ||
</p> | ||
<p> | ||
Join us for non-stop music, exciting features, and the chance to hear fresh tracks from emerging artists. Whether you’re an aspiring musician or a music lover, | ||
Markmix Radio is your go-to station for the best in new music. | ||
</p> | ||
<p> | ||
Follow us on Instagram <b>@markmix.studios</b> and YouTube at <b>Markmix Studios</b>. For enquiries email, <b>[email protected]</b>. | ||
</p> | ||
</section> | ||
</main> | ||
|
||
<footer> | ||
<p>Copyright© <b>Markmix Studios</b>.</p> | ||
</footer> | ||
<script src="script.js"></script> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
// Placeholder for future functionality | ||
console.log("Markmix Radio is live!"); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,94 @@ | ||
/* General Reset */ | ||
* { | ||
margin: 0; | ||
padding: 0; | ||
box-sizing: border-box; | ||
font-family: Arial, sans-serif; | ||
} | ||
|
||
/* Body Styling */ | ||
body { | ||
background-color: #f5f5f5; | ||
color: #333; | ||
line-height: 1.6; | ||
} | ||
|
||
/* Header */ | ||
header { | ||
text-align: center; | ||
padding: 20px; | ||
background-color: #4caf50; | ||
color: white; | ||
} | ||
|
||
header h1 { | ||
font-size: 2rem; | ||
margin-bottom: 10px; | ||
} | ||
|
||
header p { | ||
font-size: 1.2rem; | ||
} | ||
|
||
/* Main Content */ | ||
main { | ||
padding: 20px; | ||
text-align: center; | ||
} | ||
|
||
figure { | ||
margin: 20px auto; | ||
text-align: center; | ||
} | ||
|
||
figcaption { | ||
font-size: 1rem; | ||
margin-bottom: 10px; | ||
} | ||
|
||
/* Image Styling */ | ||
.image-container img { | ||
margin: 20px auto; | ||
border-radius: 10px; | ||
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); | ||
} | ||
|
||
/* Links */ | ||
.live-link p { | ||
font-size: 1rem; | ||
margin: 20px 0; | ||
} | ||
|
||
.live-link a { | ||
color: #4caf50; | ||
text-decoration: none; | ||
font-weight: bold; | ||
} | ||
|
||
.live-link a:hover { | ||
text-decoration: underline; | ||
} | ||
|
||
/* About Section */ | ||
.about { | ||
text-align: left; | ||
margin: 20px auto; | ||
padding: 10px; | ||
max-width: 800px; | ||
background: #ffffff; | ||
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); | ||
border-radius: 10px; | ||
} | ||
|
||
.about p { | ||
margin: 10px 0; | ||
} | ||
|
||
/* Footer */ | ||
footer { | ||
text-align: center; | ||
padding: 10px; | ||
background-color: #4caf50; | ||
color: white; | ||
margin-top: 20px; | ||
} |