Hello, I'm trying to edit my code properly so it looks like the picture below, I usually am able to figure it out on my own. But I'm already behind and need to get this correct so I can move forward with the rest of these chapters.  Thanks in advance for your time.    Fish Creek Animal Clinic - Home                 Fish Creek Animal Clinic                       Home         Services         Ask the Vet         Contact                          Professional, Compassionate Care for your Pet       The caring doctors and staff at Fish Creek Animal Clinic understand the special bond you share with your         cherished pet.               Years of Experience         Fish Creek Veterinarians have provided personalized and compassionate care since 1984.         Open Door Policy         We welcome owners to stay with their pets during any medical procedure.         Always Available         Our professionals are on duty 24 hours a day, 7 days a week.                               Fish Creek Animal Clinic           800-555-5555           1242 Grassy Lane           Fish Creek, WI 55534                                    Copyright © 2023 Fish Creek Animal Clinic                Brandon@Tupa.com             CSS Code * {   box-sizing: border-box; } #wrapper {   min-width: 700px;   margin-right: auto;   margin-left: auto;   background-color: #f0f0f0; } body {   background-color: #5280c5;   background-image: url(gradientblue.jpg);   color: #003366;   font-family: Verdana, Arial, sans-serif; } header {   text-align: center;   color: #f0f0f0;   background-color: #000066;   background-image: url(bigfish.gif);   background-repeat: no-repeat;   background-size: 100%;   padding: 1em;   font-family: Georgia, "Times New Roman", serif; } h1 {   font-size: 3em;   padding: 0.2em;   text-shadow: 0 1px 0 #cccccc; } h2 {   text-shadow: 1px 1px 1px #777;   font-size: 1.2em; } main {   margin-left: 180px;   background-color: white;   border: 1px solid #AEC3E3;   overflow: auto;   display: block; } nav {   float: left;   width: 180px;   padding: 0.5em;   font-weight: bold; } nav ul {   list-style-type: none; } nav a {   text-decoration: none; } nav a:link {   color: #000066; } nav a:visited {   color: #5280c5; } nav a:hover {   color: #3262a3; } dt {   color: #5280c5;   font-size: 1.1em;   font-weight: bold;   font-family: Georgia, "Times New Roman", serif; } .category {   font-weight: bold;   color: #5380c5;   font-family: Georgia, "Times New Roman", serif; } footer {   text-align: center;   background-color: #aec3e3;   font-size: 0.7em;   font-style: italic;   padding: 1em;   margin-left: 180px; } .address {   clear: left; } .floatright {   float: right;   padding: 1em 0 1em 1em; } section {   float: left;   width: 30%;   margin-right: 1em;   margin-bottom: 1em;   padding: 0;   background-color: #EAEAEA;   min-height: 200px; } section h3 {   padding: .25em;   margin-top: 0;   margin-bottom: 0;   font-size: 110%;   background-color: #AEC3E3; } section p {   padding-top: 0;   padding-left: .25em;   padding-right: .25em;   padding-bottom: .25em; } header a {   text-decoration: none;   color: #F0F0F0; } header a:hover {   color: #AEC3E3; }

Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
icon
Related questions
Question

Hello, I'm trying to edit my code properly so it looks like the picture below, I usually am able to figure it out on my own. But I'm already behind and need to get this correct so I can move forward with the rest of these chapters.  Thanks in advance for your time. 

<!DOCTYPE html>
<html lang="en">

<head>
  <title>Fish Creek Animal Clinic - Home</title>
  <meta charset="UTF-8">
  <link rel="stylesheet" href="fishcreek.css">
</head>

<body>
  <div id="wrapper">
    <header>
      <h1><a href="index.html">Fish Creek Animal Clinic</a></h1>
    </header>
    <nav>
      <ul>
        <li><a href="index.html">Home</a></li>
        <li><a href="services.html">Services</a></li>
        <li><a href="askvet.html">Ask the Vet</a></li>
        <li><a href="contact.html">Contact</a></li>
      </ul>
    </nav>
    
    <main>
      <h2>Professional, Compassionate Care for your Pet</h2>
      <p>The caring doctors and staff at Fish Creek Animal Clinic understand the special bond you share with your
        cherished pet.</p>
      <dl>
        <dt>Years of Experience</dt>
        <dd>Fish Creek Veterinarians have provided personalized and compassionate care since 1984.</dd>
        <dt>Open Door Policy</dt>
        <dd>We welcome owners to stay with their pets during any medical procedure.</dd>
        <dt>Always Available</dt>
        <dd>Our professionals are on duty 24 hours a day, 7 days a week.</dd>
      </dl>
      <div>
        <address>
          Fish Creek Animal Clinic<br>
          800-555-5555<br>
          1242 Grassy Lane<br>
          Fish Creek, WI 55534<br><br>
        </address>
      </div>
    </main>
    <footer>
      <div class="address">
       Copyright © 2023 Fish Creek Animal Clinic
       <br>
       <a href="btupa@hgtc.edu">Brandon@Tupa.com</a>
      </div>
    </footer>
  </div>
</body>

</html>

CSS Code

* {
  box-sizing: border-box;
}

#wrapper {
  min-width: 700px;
  margin-right: auto;
  margin-left: auto;
  background-color: #f0f0f0;
}

body {
  background-color: #5280c5;
  background-image: url(gradientblue.jpg);
  color: #003366;
  font-family: Verdana, Arial, sans-serif;
}

header {
  text-align: center;
  color: #f0f0f0;
  background-color: #000066;
  background-image: url(bigfish.gif);
  background-repeat: no-repeat;
  background-size: 100%;
  padding: 1em;
  font-family: Georgia, "Times New Roman", serif;
}

h1 {
  font-size: 3em;
  padding: 0.2em;
  text-shadow: 0 1px 0 #cccccc;
}

h2 {
  text-shadow: 1px 1px 1px #777;
  font-size: 1.2em;
}

main {
  margin-left: 180px;
  background-color: white;
  border: 1px solid #AEC3E3;
  overflow: auto;
  display: block;
}


nav {
  float: left;
  width: 180px;
  padding: 0.5em;
  font-weight: bold;
}
nav ul {
  list-style-type: none;
}

nav a {
  text-decoration: none;
}

nav a:link {
  color: #000066;
}

nav a:visited {
  color: #5280c5;
}

nav a:hover {
  color: #3262a3;
}

dt {
  color: #5280c5;
  font-size: 1.1em;
  font-weight: bold;
  font-family: Georgia, "Times New Roman", serif;
}

.category {
  font-weight: bold;
  color: #5380c5;
  font-family: Georgia, "Times New Roman", serif;
}

footer {
  text-align: center;
  background-color: #aec3e3;
  font-size: 0.7em;
  font-style: italic;
  padding: 1em;
  margin-left: 180px;
}

.address {
  clear: left;
}

.floatright {
  float: right;
  padding: 1em 0 1em 1em;
}

section {
  float: left;
  width: 30%;
  margin-right: 1em;
  margin-bottom: 1em;
  padding: 0;
  background-color: #EAEAEA;
  min-height: 200px;
}

section h3 {
  padding: .25em;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 110%;
  background-color: #AEC3E3;
}

section p {
  padding-top: 0;
  padding-left: .25em;
  padding-right: .25em;
  padding-bottom: .25em;
}

header a {
  text-decoration: none;
  color: #F0F0F0;
}

header a:hover {
  color: #AEC3E3;
}

---

### Fish Creek Animal Clinic

**Professional, Compassionate Care for Your Pet**

The caring doctors and staff at Fish Creek Animal Clinic understand the special bond you share with your cherished pet.

#### Years of Experience

Fish Creek Veterinarians have provided personalized and compassionate care since 1984.

#### Open Door Policy

We welcome owners to stay with their pets during any medical procedure.

#### Always Available

Our professionals are on duty 24 hours a day, 7 days a week.

---

**Fish Creek Animal Clinic**

Phone: 800-555-5555

Address: 12456 Grassy Lane, Fish Creek, WI 55534

---

**Home | Services | Ask the Vet | Contact**

---

© 2020 Fish Creek Animal Clinic  
**Email:** yourfirstname@yourlastname.com

---

This text is designed for placement in the website of Fish Creek Animal Clinic. The clinic emphasizes its longstanding experience, transparent care policy for pets, and round-the-clock availability of veterinary professionals.
Transcribed Image Text:--- ### Fish Creek Animal Clinic **Professional, Compassionate Care for Your Pet** The caring doctors and staff at Fish Creek Animal Clinic understand the special bond you share with your cherished pet. #### Years of Experience Fish Creek Veterinarians have provided personalized and compassionate care since 1984. #### Open Door Policy We welcome owners to stay with their pets during any medical procedure. #### Always Available Our professionals are on duty 24 hours a day, 7 days a week. --- **Fish Creek Animal Clinic** Phone: 800-555-5555 Address: 12456 Grassy Lane, Fish Creek, WI 55534 --- **Home | Services | Ask the Vet | Contact** --- © 2020 Fish Creek Animal Clinic **Email:** yourfirstname@yourlastname.com --- This text is designed for placement in the website of Fish Creek Animal Clinic. The clinic emphasizes its longstanding experience, transparent care policy for pets, and round-the-clock availability of veterinary professionals.
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 4 steps with 1 images

Blurred answer
Knowledge Booster
Software products
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
Recommended textbooks for you
Database System Concepts
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
Starting Out with Python (4th Edition)
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
C How to Program (8th Edition)
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
Database Systems: Design, Implementation, & Manag…
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
Programmable Logic Controllers
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education