Skip to content

Commit

Permalink
Create index.html
Browse files Browse the repository at this point in the history
  • Loading branch information
hvmonteiro authored Apr 28, 2024
1 parent 03a16e7 commit 343f1c2
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Musician Landing Page</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<h1>Musician Name</h1>
<nav>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Music</a></li>
<li><a href="#">Contact</a></li>
</ul>
</nav>
</header>

<section class="hero">
<h2>Welcome to My Music World</h2>
<p>Explore my latest tracks and stay tuned for upcoming performances.</p>
<a href="#" class="btn">Listen Now</a>
</section>

<footer>
<p>&copy; 2024 Musician Name. All rights reserved.</p>
</footer>

<script src="script.js"></script>
</body>
</html>

0 comments on commit 343f1c2

Please sign in to comment.