<html>
<head>
<style>
img {
display: block;
margin: auto;
}
</style>
</head>
<body>
<h2>Center an Image Horizontally</h2>
<p>To center an image horizontally, set margin to auto, convert it into a block element, and define a width:</p>
<img src="paris.jpg" alt="Paris" style="width:50%">
</body>
</html>