Currently, I am immersed in a CSS and HTML project aimed at honing my skills. The main challenge I face involves positioning a Google Maps image to the right of a paragraph. Despite several attempts, I have been unable to achieve the desired layout. Can anyone provide guidance on how to resolve this issue?
To give you more context, here are snippets of my HTML and CSS code:
.pagina_Homepage {
border: solid black 2px;
background-color: rgb(12, 53, 106);
padding-bottom: 23%;
}
.pagina_Homepage h1 {
padding-left: 5px;
}
.pagina_Homepage h3 {
padding-left: 5px;
}
.pagina_Homepage p {
padding-left: 5px;
padding-right: 950px;
display: flex;
}
#Mappa {
border: solid black 2px;
padding-left: 10px;
}
<section class="pagina_Homepage">
<h1>
Nuove notizie da ComiGames
</h1>
<article>
<h1>Apertura</h1>
<p>
*text*
</p>
<h3>dove siamo:</h3>
<iframe id="Mappa" src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d11318.743987401329!2d12.475192276933928!3d41.909517842779174!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x132f60561ce8c111%3A0x4009bab70f9f732d!2sVia%20del%20Corso%2C%20503%2C%2000187%20Roma%20RM!5e0!3m2!1it!2it!4v1700844324759!5m2!1it!2it"
width="400" height="300" style="border:0;" allowfullscreen="" loading="lazy" referrerpolicy="no-referrer-when-downgrade"></iframe>
</article>
</section>
Despite seeking assistance from ChatGPT to address the issue, my attempts were in vain as the positioning of other articles in the HTML file did not align with my intentions.