- 掃描 ID:
- bb3f85ad-ace4-4d4e-89ee-bcc461010678已完成
- 已提交的 URL:
- https://theweedshop.site/
- 報告完成時間:
連結 · 找到 1 個
從頁面中識別的傳出連結
連結 | Text |
---|---|
https://www.google.com | No |
JavaScript 變數 · 找到 3 個
在頁面的視窗物件上載入的全域 JavaScript 變數是在函數外部宣告的變數,可從目前範圍內程式碼中的任何位置存取
名稱 | 類型 |
---|---|
onbeforetoggle | object |
documentPictureInPicture | object |
onscrollend | object |
主控台記錄訊息 · 找到 0 條
記錄到 Web 主控台的訊息
HTML
頁面的原始 HTML 主體
<!DOCTYPE html><html lang="en"><head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Age Verification</title>
<style>
body {
background-image: url("https://s12.gifyu.com/images/SVHEk.gif");
background-color: #cccccc;
background-size: cover;
background-repeat: no-repeat;
background-position: center;
margin: 0;
padding: 0;
font-family: Newton, Arial, sans-serif; /* Newton font, fallbacks to Arial and sans-serif */
width: 100vw;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
text-align: center;
}
.input {
background-color: #4CAF50;
border: none;
color: white;
padding: 15px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 4px 2px;
cursor: pointer;
font-family: 'Newton', Arial, sans-serif;
}
.input.no {
background-color: #f44336; /* Red for 'No' */
}
h1, p, a {
color: #000; /* Text color */
}
</style>
</head>
<body>
<div>
<h1>Age Verification</h1>
<p>Are you over the age of 21?</p>
<a class="input" href="page1.html" target="">Yes</a>
<a class="input no" href="https://www.google.com" target="">No</a>
</div>
</body></html>