1<!DOCTYPE html>
2<html>
3 <head>
4 <title>Center an Image using text align center</title>
5 <style>
6 .img-container {
7 text-align: center;
8 display: block;
9 }
10 </style>
11 </head>
12 <body>
13 <span class="img-container"> <!-- Inline parent element -->
14 <img src="user.png" alt="">
15 </span>
16 </body>
17</html>
1<!DOCTYPE html>
2<html>
3 <head>
4 <title>Center an Image using text align center</title>
5 <style>
6 .img-container {
7 text-align: center;
8 }
9 </style>
10 </head>
11 <body>
12 <div class="img-container"> <!-- Block parent element -->
13 <img src="user.png" alt="John Doe">
14 </div>
15 </body>
16</html>