https://semzpapat.vercel.app/

Submitted URL:
https://semzpapat.vercel.app/
Report Finished:

The outgoing links identified from the page

JavaScript Variables · 3 found

Global JavaScript variables loaded on the window object of a page, are variables declared outside of functions and accessible from anywhere in the code within the current scope

NameType
onbeforetogglestring
documentPictureInPicturestring
onscrollendstring

Console log messages · 1 found

Messages logged to the web console

TypeCategoryLog
errornetwork
URL
https://semzpapat.vercel.app/favicon.ico
Text
Failed to load resource: the server responded with a status of 404 ()

HTML

The raw HTML body of the page

<!DOCTYPE html><html lang="en"><head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Inventory System</title>
    <link rel="stylesheet" href="style.css">
</head>
<body>
    <div class="inventory-container">
        <!-- Panel Kiri: Inventory -->
        <div class="inventory-panel" id="inventory-panel">
            <div class="capacity-bar">
                <div class="capacity-fill" id="capacity-fill"></div>
            </div>
            <div class="inventory-grid" id="player-inventory">
                <!-- Item slots will be dynamically generated here -->
            </div>
        </div>

        <!-- Panel Tengah: Tindakan -->
        <div class="action-panel">
            <button class="option-button" id="use-button">Gunakan</button>
            <button class="option-button" id="give-button">Berikan</button>
            <button class="option-button" id="drop-button">Buang</button>
            <button class="option-button" id="close-button">Tutup</button>
        </div>

        <!-- Panel Kanan: Drop/Looting -->
        <div class="inventory-panel" id="drop-panel">
            <div class="inventory-grid" id="drop-inventory">
                <!-- Drop slots will be dynamically generated here -->
            </div>
        </div>
    </div>

    <script src="app.js"></script>


</body></html>