Help! I can’t figure out how to position the text like the second picture.
Here’s my scrimba link : empty-flower
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!
1 Like