https://void.dev/

提交的 URL:
https://t.co/BUx4i0I2nP
报告完成时间:

链接 · 找到 0 个

从页面中识别出的传出链接

JavaScript 变量 · 找到 3 个

在页面窗口对象上加载的全局 JavaScript 变量是在函数外部声明的变量,可以从当前范围内的代码中的任何位置访问

名称类型
onbeforetoggleobject
documentPictureInPictureobject
onscrollendobject

控制台日志消息 · 找到 1 条

记录到 Web 控制台的消息

类型类别记录
errornetwork
URL
https://void.dev/favicon.ico
文本
Failed to load resource: the server responded with a status of 404 ()

HTML

页面的原始 HTML 正文

<!--
                              Y\     /Y
                              | \ _ / |
        _____                 | =(_)= |
    ,-~"     "~-.           ,-~\/^ ^\/~-.
  ,^ ___     ___ ^.       ,^ ___     ___ ^.
 / .^   ^. .^   ^. \     / .^   ^. .^   ^. \
Y  l    O! l    O!  Y   Y  lo    ! lo    !  Y
l_ `.___.' `.___.' _[   l_ `.___.' `.___.' _[
l^~"-------------"~^I   l^~"-------------"~^I
!\,               ,/!   !                   !
 \ ~-.,_______,.-~ /     \                 /
  ^.             .^       ^.             .^    -Row
    "-.._____.,-"           "-.._____.,-"

--><html><head>
        <title>Coming Soon</title>
        <meta name="viewport" content="width=device-width,maximum-scale=1">
        <style>
            #container {
                width: 100%;
                height: 100%;
                display: flex;
                align-items: center;
                justify-content: center;
                -webkit-align-items: center;
            }

            #content {
                width: 75%;
                height: 75%;
                text-align: center;
            }

            :root {
                --black: #000;
                --white: #fff;
            }

            * {
                font-family: Courier, monospace;
                font-size: 3vw;
                padding: 0;
                margin: 0;
            }

            p {
                margin-bottom: 5vw;
            }

            p, input[type=email] {
                color: var(--black);
                background-color: var(--white);
            }

            form {
                margin-top: 30px;
            }

            input {
                width: 75vw;
                margin-bottom: 15px;
                height: 5vw;
            }

            #hiring {
                position: absolute;
                top: 0;
                right: 10;
            }
            #hiring a {
                font-size: 2vw;
            }
        </style>
    </head>
    <body>
        <div id="hiring">
            <a href="/jobs">Jobs</a>
        </div>
        <div id="container">
          <div id="content">
            <p>Today, game development isn't about game developers.</p>
            <p>We're working to change that.</p>
            <p><strong>Coming 2025</strong></p>
            <form action="https://formspree.io/f/xaygboer" method="POST">
                <input type="email" name="email" placeholder="Email Address" required="">
                <input type="submit" value="Notify Me When You Launch">
            </form>
          </div>
        </div>
    

</body></html>