I'm currently working on my HTML website and facing a layout issue. I have an image in the center of the screen, but I want to add text beside it on the right side. Every time I try to do this, the image moves down, which is frustrating. I'm not sure how to fix it.
Here is the desired layout: https://i.sstatic.net/Yf3zB.jpg
The image on the left shows how I want the layout to be.
The slider is a slideshow for the pictures. The text I want to add should go under the "What I Do" block.
Current code:
<div class="slider" id="main-slider"> <div class="slider-wrapper"> <img src="./img/hem.jpg" alt="First" class="slide" /> <img src="./img/torslanda.png" alt="Second" class="slide" /> <img src="./img/DSC_0032.JPG" alt="Third" class="slide" /> <img src="./img/hem2.JPG" alt="Fourth" class="slide" /> </div> </div>