https://www.markbonner.com/

已提交的 URL:
https://www.markbonner.com/
報告完成時間:

連結 · 找到 0 個

JavaScript 變數 · 找到 3 個

名稱類型
onbeforetoggleobject
documentPictureInPictureobject
onscrollendobject

主控台記錄訊息 · 找到 1 條

類型類別記錄
errornetwork
URL
https://www.markbonner.com/favicon.ico
Text
Failed to load resource: the server responded with a status of 404 (Not Found)

HTML

<!DOCTYPE html><html lang="en"><head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Full Screen Image</title>
    <style>
        body, html {
            margin: 0;
            padding: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
        }
        .fullscreen-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('your-image.jpg');
            background-size: cover;
            background-position: center;
        }
    </style>
</head>
<body>
    <div class="fullscreen-image"></div>


</body></html>