<!DOCTYPE html>

<html lang="zh-CN">

<head>

    <meta charset="UTF-8">

    <title>展示图片</title>

    <style>

        /*居中显示图片*/

        body {

            display: flex;

            justify-content: center;

            align-items: center;

            min-height: 100vh;

            margin: 0;

            background: #f5f5f5;

        }

        img {

            max-width: 100%;

            height: auto;

        }

    </style>

</head>

<body>

    <!-- 图片标签 -->

    <img src="https://s3.uuu.ovh/2026/05/18/XzWbfYRd.jpg" alt="69ffa921f21954fb14b61bbcd61766e3e6a59a57.jpg" />

</body>

</html>