https://dreamplug.in/

Submitted URL:
https://dreamplug.in
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
onbeforetoggleobject
documentPictureInPictureobject
onscrollendobject

Console log messages · 1 found

Messages logged to the web console

TypeCategoryLog
errornetwork
URL
https://dreamplug.in/favicon.ico
Text
Failed to load resource: the server responded with a status of 403 ()

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">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>Dreamplug.in</title>
    <style>
        *{
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body{
            background: #EDEDED;
            font-family: Arial, sans-serif;
            line-height: 1.4;
            color: #333;
        }
        #container{
            width: 100vw;
            height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        .image{
            position: relative;
            width: 320px;
            height: 320px;
            margin: 42px auto;
            background: transparent url('image.jpg') no-repeat center;
            background-size: cover;
            border-radius: 8px;
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
        }
        .image a{
            padding: 16px;
            color: rgb(58,59,40);
            text-decoration: none;
        }
        .image h1{
            position: absolute;
            width: 100%;
            top: 0;
            left: 0;
            padding: 12px;
            text-align: center;
            color: rgb(58,59,40);
            font-size: 28px;
        }
    </style>
</head>
<body>
    <!-- <img src="image.jpg" alt=""> -->
    <div id="container">
        <div class="image">
            <h1>Dreamplug</h1>
            <a href="terms.html">Terms and conditions</a>
            <a href="privacy.html">Privacy policy</a>
        </div>
    </div>
    
    

</body></html>