Sumali sa IDNStudy.com at simulang makuha ang maaasahang mga sagot. Alamin ang mga detalyadong sagot sa iyong mga tanong mula sa aming malawak na kaalaman sa mga eksperto.

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;

}