Need some help. Im stuck

<PLEASE USE THIS TEMPLATE TO HELP YOU CREATE A GREAT POST!>

<Below this line, add a link to the EXACT exercise that you are stuck at.>
Here is the link to the exercise which I am stuck right now. https://www.codecademy.com/courses/learn-html-css/lessons/css-setup/exercises/review-css-setup

<Below this line, in what way does your code behave incorrectly? Include ALL error messages.>
I dont understand on how to do this exercise. Here is the instructions: Link a file called style.css to index.html. The attributes should be set in the following order: href, type, rel.

Note: The contents of style.css aren’t important for now, so the file is not shown at the moment. In the next unit, you’ll learn more about the fundamentals of CSS.

```

Innovation Cloud

Connect your ideas globally

Learn More
<div class="nav">
  <div class="container">
    <ul>
      <li>Register</li>
      <li>Schedule</li>
      <li>Sponsors</li>
      <li>About</li>
      <li>Contact</li>
    </ul>
  </div>
</div>

<div class="main">
  <div class="container">
    <img src="https://s3.amazonaws.com/codecademy-content/projects/innovation-cloud/cloud.svg" height="128" width="196">
    <h2>The Innovation Cloud Conference</h2>
    <p>Connect with the best minds across a wide range of industries to share ideas and brainstorm new solutions to challenging problems.</p>
    <p>Hear industry leaders talk about what worked (and what didn't) so that you can save time on your most challenging projects.</p>
    <p>Learn about the latest research and technologies that you can use immediately to invent the future.</p>
  </div>
</div>

<div class="jumbotron">
  <div class="container">
    <h2>Stay Connected</h2>
    <p>Receive weekly insights from industry insiders.</p>
    <a class="btn" href="#">Join</a>
  </div>
</div>

<div class="footer">
  <div class="container">
    <p>&copy; Innovation Cloud Conference</p>
  </div>
</div>
<do not remove the three backticks above>

Not stuck anymore. I have got the answer already. :grinning:

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.