<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Image Page</title>
<style>
body {
margin: 0;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
background: #f4f4f4;
font-family: Arial, sans-serif;
}
img {
max-width: 90%;
max-height: 90vh;
border-radius: 10px;
box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
</style>
</head>
<body>
<img src="xxxxxxxx.jpg" alt="Image">
</body>
</html>