Sumali sa IDNStudy.com at tuklasin ang komunidad ng pagbabahagi ng kaalaman. Tuklasin ang malawak na hanay ng mga paksa at makahanap ng maaasahang sagot mula sa mga bihasang miyembro ng aming komunidad.

create an html page that will display an image on the center​

Sagot :

Answer:

To center anything, vertically and horizontally. Wrap it inside a div then style it with css.

html:

<div class="centered-image">

 <img src="path/to/image/here"/>

</div>


css:

.centered-image {

 display: flex;

 justify-content: center;

 align-items: center;

}