<html>
<head>
<style>
div {
display: flex;
justify-content: center;
}
img {
width: 50%;
}
</style>
</head>
<body>
<h2>Center an Image Horizontally</h2>
<div>
<img src="paris.jpg" alt="Paris" style="width:50%">
</div>
</body>
</html>