https://dyonis.io/camp/qld/

Submitted URL:
https://dyonis.io/camp/qld/
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

Console log messages · 0 found

Messages logged to the web console

HTML

The raw HTML body of the page

<html><head>
<style>
h1, p, div, img, body, html {
    padding: 0;
    margin: 0;
    border: 0;
}

body {
    background: black;
    font-family: 'Bangers', cursive;
    letter-spacing: 0.25em;
    color: white;
    background-image: url("jungle.gif");
    background-size:     cover;                      /* <------ */
    background-repeat:   no-repeat;
    background-position: center center;
}

div#contents {
    width: 1220px;
    margin-left: auto;
    margin-right: auto;
}

h1 {
    font-size: 130px;
    letter-spacing: 0.08em;
    padding: 20px 40px 12px 30px;
    font-weight: bold;
}

div#banners img {
    height: 337px;
    width: 600px;
    padding: 0;
    margin: 0;
}

div#points {
    font-size: 100px;
    font-weight: bold;
    color: white;
    float: left;
}

div#points div {
    background-color: black;
    width: 574px;
    float: left;
    padding: 10 14 18 12;
    text-align: right;
}

div#points div#alias {
    margin-left: 7px;
}

div#clues {
    background-color: black;
    margin-top: 150px;
    width: 1210px;
}

div#clues p {
    font-size: 38px;
    margin: 12px 0 0 0;
}

</style>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin="">
<link href="https://fonts.googleapis.com/css2?family=Bangers&amp;display=swap" rel="stylesheet">
</head>
<body>
<div id="contents">
<h1>Tribe Points Update</h1>
<div id="banners">
<img src="tribe_lionheart.jpg" width="600" height="337">
<img src="tribe_courage.jpg" width="600" height="337">
</div>
<div id="points">
<div id="agents"><p>-10,000,000,000</p></div>
<div id="alias"><p>0</p></div>
</div>
</div>


</body></html>