how to put an image in center html code example
Example 1: image align center
.center {
display: block;
margin-left: auto;
margin-right: auto;
width: 50%;
}
Example 2: center an image
.someclass {
display: block;
margin-left: auto;
margin-right: auto;
}