- Scan ID:
- ec0b93c4-1a32-4f9e-b3b1-2e6c7af0b7ffFinished
- Submitted URL:
- https://jawakoding.com/
- Report Finished:
Links · 0 found
The outgoing links identified from the page
JavaScript Variables · 4 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
Name | Type |
---|---|
onbeforetoggle | object |
documentPictureInPicture | object |
onscrollend | object |
updateClock | function |
Console log messages · 1 found
Messages logged to the web console
Type | Category | Log |
---|---|---|
error | network |
|
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>Digital Clock</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div id="project2"><a href="/portofolio/project.html">CLICK TO ANOTHER PROJECT</a></div>
<h2>Digital Clock</h2>
<div class="clock">
<div>
<span id="Hour">02</span>
<span class="text">Hours</span>
</div>
<div>
<span id="Minutes">37</span>
<span class="text">Minutes</span>
</div>
<div>
<span id="Seconds">21</span>
<span class="text">Seconds</span>
</div>
<div>
<span id="ampm">PM</span>
</div>
</div>
<script src="main.js"></script>
</body></html>