I can't figure this out

Help! I can’t figure out how to position the text like the second picture.
Here’s my scrimba link : empty-flower

I want the text to position like this

Hey @TheEndIsNear9700, you can start by wrapping this section in a section and div. Is should get you a good base to position it on the left. Then you can tinker the css to get the spacing right.

 <body>
  <section class="hero">
    <div class="hero-content">
      <h1>Dave's Devs & Designers</h1>
      <p>We're a group devs & designers who will help your dream come true.</p>
      <a href="#" class="cta-button">Let's chat</a>
    </div>
  </section>
</body>

That did it! thanks Roku! :grin:

1 Like