<!DOCTYPE html>
<html lang="zh-CN">
<head>
    <meta charset="UTF-8">
    <title>花海背景网页</title>
    <style>
        body {
            /* 设置背景图片 */
            background-image: https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTSWoM_A5uJbFIp3CCIxT5xKsq_JQ-XaD49tQ&s;
            /* 图片平铺方式 */
            background-repeat: no-repeat;
            /* 背景图片覆盖整个页面 */
            background-size: cover;
            /* 背景图片固定不随滚动移动 */
            background-attachment: fixed;
            /* 背景居中 */
            background-position: center;
            /* 页面内容文字颜色，可按需调整 */
            color: white;
            font-family: Arial, sans-serif;
            margin: 0;
            height: 100vh;
        }
    </style>
</head>
<body>
</body>
</html>