- 扫描 ID:
- ecce24d4-f7ea-4a38-a8f8-d4b951f72b1d已完成
- 提交的 URL:
- https://theweedshop.site/
- 报告完成时间:
链接 · 找到 1 个
从页面中识别出的传出链接
链接 | 文本 |
---|---|
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>