<!DOCTYPE html>
<html lang=&quot;en&quot;>
<head>
<meta charset=&quot;UTF-8&quot;>
<meta name=&quot;viewport&quot; content=&quot;width=device-width, initial-scale=1.0&quot;>
<title>Strike a Chord</title>
<style>
/* Resetting default margin and padding */
body, h1, h2, h3, p, ul, li {
margin: 0;
padding: 0;
}
 
/* Setting a background color for the entire page */
body {
background-color: #f0f0f0;
}
 
/* Styling the header */
header {
background-color: #333;
color: #fff;
padding: 20px;
text-align: center;
}
 
/* Styling the navigation menu */
 
nav {
background-color: #666;
padding: 10px;
text-align: center;
}
 
nav ul {
list-style-type: none;
}
 
nav ul li {
display: inline;
margin-right: 10px;
}
 
nav ul li a {
color: #fff;
text-decoration: none;
font-weight: bold;
}
 
/* Styling the footer */
footer {
background-color: #333;
color: #fff;
padding: 20px;
text-align: center;
 
}
</style>
</head>
<body>
<header>
<h1>Strike a Chord Music Lessons</h1>
</header>
<nav>
<ul>
<li><a href=&quot;#&quot;>Home</a></li>
<li><a href=&quot;#&quot;>Piano Lessons</a></li>
<li><a href=&quot;#&quot;>Guitar Lessons</a></li>
<li><a href=&quot;#&quot;>Violin Lessons</a></li>
</ul>
</nav>
<footer>
<p>&amp;copy; 2024 Strike a Chord Music Lessons</p>
</footer>
</body>
</html>

<!DOCTYPE html><html lang=&quot;en&quot;><head><meta charset=&quot;UTF-8&quot;><meta name=&quot;viewport&quot; content=&quot;width=device-width, initial-scale=1.0&quot;><title>Strike a Chord</title><style>/* Resetting default margin and padding */body, h1, h2, h3, p, ul, li {margin: 0;padding: 0;}
/* Setting a background color for the entire page */body {background-color: #f0f0f0;}
/* Styling the header */header {background-color: #333;color: #fff;padding: 20px;text-align: center;}
/* Styling the navigation menu */
nav {background-color: #666;padding: 10px;text-align: center;}
nav ul {list-style-type: none;}
nav ul li {display: inline;margin-right: 10px;}
nav ul li a {color: #fff;text-decoration: none;font-weight: bold;}
/* Styling the footer */footer {background-color: #333;color: #fff;padding: 20px;text-align: center;
}</style></head><body><header><h1>Strike a Chord Music Lessons</h1></header><nav><ul><li><a href=&quot;#&quot;>Home</a></li><li><a href=&quot;#&quot;>Piano Lessons</a></li><li><a href=&quot;#&quot;>Guitar Lessons</a></li><li><a href=&quot;#&quot;>Violin Lessons</a></li></ul></nav><footer><p>&amp;copy; 2024 Strike a Chord Music Lessons</p></footer></body></html>