Design in html tags

a Heavenly music webpage

<!DOCTYPE html>

<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Heavenly Music</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<h1>Heavenly Music</h1>
<nav>
<ul>
<li><a href="#home">Home</a></li>
<li><a href="#about">About</a></li>
<li><a href="#music">Music</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
</header>

<main>
<section id="home">
<h2>Welcome to Heavenly Music</h2>
<p>Discover the most uplifting and soul stirring music that will transport you to another realm.</p>
</section>

<section id="about">
<h2>About Us</h2>
<p>Learn about our mission to spread positivity and light through our music.</p>
</section>

<section id="music">
<h2>Music</h2>
<p>Listen to our latest tracks and albums that will lift your spirits and soothe your soul.</p>
</section>

<section id="contact">
<h2>Contact Us</h2>
<p>Get in touch with us for inquiries, collaborations, or just to say hello.</p>
</section>
</main>

<footer>
<p>&copy; 2023 Heavenly Music. All Rights Reserved.</p>
</footer>
</body>
</html>