Create a songwriting webpage named Heavenly Music using HTML TAGS.

The information on webpage as follow:

use colors and images that represent my personality and style as a songwriter on my web page. I can also include a biography section that shares my story and influences as a musician. Adding videos or audio clips of my songs can show visitors my talent and creativity. Making sure my page is easy to navigate and visually appealing can help communicate my personal value as a songwriter.

<!DOCTYPE html>

<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Heavenly Music</title>
</head>
<body>
<h1>Welcome to Heavenly Music</h1>

<h2>About Me</h2>
<p>My name is [Your Name] and I am a passionate songwriter influenced by [Your Influences]. I love creating music that touches the soul and reflects my personal style.</p>

<h2>My Music</h2>
<p>Check out some of my latest songs below:</p>
<iframe width="560" height="315" src="https://www.youtube.com/embed/[YourVideoId]" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>

<h2>My Bio</h2>
<p>Learn more about my journey as a musician and the stories behind my music. I believe that music is a way to connect with others and express emotions in a unique way.</p>

<h2>Contact Me</h2>
<p>Feel free to reach out to me at [YourEmail] if you have any questions or would like to collaborate on a project. Let's create some magic together!</p>

<style>
body {
background-color: #f9f9f9;
color: #333;
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
}

h1, h2 {
color: #663399;
}

iframe {
margin: 20px 0;
}
</style>
</body>
</html>