put image in middle of page html code example
Example 1: css center image
.center {
display: block;
margin-left: auto;
margin-right: auto;
}
Example 2: aligning image to middle in html
<style>
.aligncenter {
text-align: center;
}
</style>