Hello there, I am looking to include the image below on a website:
https://i.sstatic.net/IkvWN.png
I have planned out the HTML structure for it and so far this is what I've come up with:
https://i.sstatic.net/kqgEC.png
This is the code I currently have:
<div class="container">
<div class="row">
<div class="col-10">
<h1>TEXT TEXT TEXT COMPANY NAME'S TEXT TEXT</h1>
</div>
<div class="col-2">
<img src="..." alt="Image">
</div>
</div>
<div class="row">
<div class="col-10">
<p>TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT</p>
</div>
</div>
<div class="row">
<input class="form-control form-control-sm subscribe-email" type="text" placeholder="Your Email">
</div>
</div>
Can someone advise me on how to position the image above both cells? Thank you for the assistance!!