Answer:
See explaination
Step-by-step explanation:
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="ut f-8">
<title>Tutorial Project 1</title>
<style type="text/css">
p{
font-family: Georgia, serif;
}
</style>
<link rel="stylesheet" type="text/css" href="project3style.css">
</head>
<body>
<img src="images/logo.jp g" alt="New You Personal Training Banner">
<h2>Welcome to NewYou Personal Training</h2>
<h3>Our services include:</h3>
<h3>Call today to speak to one of our fitness specialists</h3>
<section>
<p>
<ul>
<li> Fitness evaluations with optimal 360° Computerized Body Profile.</li>
<li> Complete individualized training plan with free workout schedule calendar.</li>
<li> Private workout guidance provided daily to help you meet your personal goals.</li>
<li> Complimentary diet and nutrition counseling. </li>
<li> Email and text messaging reminders to help keep you on track.</li>
<li> Workout group sessions for those who prefer to exercise in a group setting.</li>
</ul>
</p>
<p>
<b><i>All fitness and nutrition services can be provided at our brand new facility or in the privacy of your own home or office. </i></b>
</p>
</section>
<section>
<p>
<h r>
<blockquote>
I was struggling to lose weight after the birth of my second child. My friend recommended NewYou, and after the first three months I
had lost 3 0 pounds. Thanks to the personal attention from their trainers and counselors, I’ve been able to keep the weight off for two
years. I’m in the best shape of my life!
<b r>
<cite>—Justine Reynolds, Cleveland</cite>
</blockquote>
<h r/>
</p>
</section>
<section>
<address>
NewYou Personal Training, 3451 West Oxmoor Avenue, Cleveland, TN 37311. (555) 639-9681 or (555) NEW-Y OU1
</address>
</section>
</body>
</html>
project3style.css : ---------->>>>>>>>
/* your name Project 3 */
body{
margin: 50px;
font-family: sans-serif;
background-color: bisque;
}
h2{
color:darkblue;
font-size: 2em;
}
h3{
color: green;
background-color: lightblue;
}
address{
color: red;
text-align: center;
font-style: italic;
font-variant: small-caps;
font-weight: 700;
font-size: 12pt;
line-height: 24pt;
}
blockquote{
background-color: gold;
width: 600px;
padding: 20px;
}
li{
text-transform: capitalize;
line-height: 2;
color: green;
}