How do I close this div

.red-text { color: red; }

h2 {
font-family: Lobster, Monospace;
}

p {
font-size: 16px;
font-family: Monospace;
}

.thick-green-border {
border-color: green;
border-width: 10px;
border-style: solid;
border-radius: 50%;
}

.smaller-image {
width: 100px;
}

<div class = “container-fluid” link rel=“stylesheet” href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.1/css/bootstrap.min.css"div/>

CatPhotoApp

Click here for cat photos.

A cute orange cat lying on its back.

Things cats love:

  • cat nip
  • laser pointers
  • lasagna

Top 3 things cats hate:

  1. flea treatment
  2. thunder
  3. other cats
Indoor Outdoor Loving Lazy Crazy Submit

The code emboldened: How do I close the Div Tag?

<div> is an opening div
</div> is a closing div

You have two tags mixed up :wink:

<link rel=“stylesheet” href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.1/css/bootstrap.min.css">

should go between <head> tags

div should look like
<div class="container-fluid"></div>

psyperl I already did that earlier it was coloured up as if it was an error but now you emphasized it I ran the test and it parsed through. Thanks for the emphasis.