<!DOCTYPE html>

<html lang="de">

<head>

<meta charset="UTF-8">

<title>Don Leo Records</title>

<meta name="viewport" content="width=device-width, initial-scale=1.0">

<style>

body {

    font-family: Arial, sans-serif;

    background: #0a0a0a;

    color: white;

    text-align: center;

    margin: 0;

}

header {

    padding: 40px;

    font-size: 32px;

}

.section {

    padding: 40px 20px;

}

.artist {

    margin: 20px 0;

}

a {

    color: #00d4ff;

    text-decoration: none;

}

iframe {

    margin: 10px;

}

</style>

</head>


<body>


<header>

    DON LEO RECORDS

</header>


<div class="section">

    <h2>Artists</h2>


    <div class="artist">

        <h3>Rejected Head</h3>

        <a href="#">Spotify</a> |

        <a href="#">Apple Music</a>

    </div>


    <div class="artist">

        <h3>Chronoscaper</h3>

        <a href="#">Spotify</a> |

        <a href="#">Apple Music</a>

    </div>

</div>


<div class="section">

    <h2>Videos</h2>

    <iframe width="300" height="170"

    src="https://www.youtube.com/embed/YOUR_VIDEO_ID"

    frameborder="0" allowfullscreen></iframe>

</div>


<div class="section">

    <h2>Kontakt</h2>

    <p>info@donleorecords.com</p>

</div>


</body>

</html>