I'm having trouble aligning my title and text next to the image on my website. Can anyone lend a hand? Thank you!
This is the final design I am aiming for: Desired Result
Here is my CSS code:
section .articleactu {
display: ;
position: relative;
margin-left: 0px;
}
.articleactu img {
max-width: 100%;
margin-left: 420px;
margin-top: 10%;
border-radius: 15px;
width: 14%;
}
.articleactu p {
display: flex;
margin-left: 420px;
}
.articleactu h2 {
margin-left: 420px;
}
and here's my HTML code:
<section>
<article class="articleactu">
<h2> L'ACTUALITÉ </h2>
<div class="g">
<img src="images/gtaarticle.jpeg" alt="Article GTA déçu" class="center">
<p>GTA : THE TRILOGY DEFINITIVE EDITION, les fans sont déçus ! </p>
<p>Il y a pleins de bugs dans le jeu qui agacent les joueurs</p>
<p>Publié le 25 novembre</p>
</article>
</section>