<center>
<img src="/images/perform.png" width="40%" class="img-responsive" alt="Responsive image">
</center>
Here i have used center tag..it shows image in center aligned but now i have to change center tag..is there any alternative tag for center tag?
There isn't one: <center>
is deprecated in favor of CSS solutions.
However, centering your example image is pretty easy in CSS:
img {
display: block;
margin: 0 auto;
}
For additional reference: https://css-tricks.com/centering-css-complete-guide/