Center text and images

i learned how to align images and text using CSS code and



style.css:

 .center{
   
   margin: auto;
 }

.container{
 display: flex;
}
h1{
 text-align: center;
}



index.html:

   <div class="container">
     <img src="image.jpg" alt="Jaire Alexander" class="center">
   </div>

Leave a Reply

Your email address will not be published. Required fields are marked *