- 扫描 ID:
- 364e071f-f930-440d-9b71-0222953a6d11已完成
- 提交的 URL:
- https://aminventory.qiam.com.sa/api/v1
- 报告完成时间:
链接 · 找到 0 个
从页面中识别出的传出链接
JavaScript 变量 · 找到 3 个
在页面窗口对象上加载的全局 JavaScript 变量是在函数外部声明的变量,可以从当前范围内的代码中的任何位置访问
名称 | 类型 |
---|---|
onbeforetoggle | object |
documentPictureInPicture | object |
onscrollend | object |
控制台日志消息 · 找到 1 条
记录到 Web 控制台的消息
类型 | 类别 | 记录 |
---|---|---|
error | network |
|
HTML
页面的原始 HTML 正文
<!DOCTYPE html><html lang="en"><head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>404 Page Not Found</title>
<style>
/*======================
404 page
=======================*/
.page_404 {
padding: 40px 0;
background: #fff;
font-family: 'Arvo', serif;
text-align: center;
}
.page_404 img {
width: 100%;
}
.four_zero_four_bg {
background-image: url(https://cdn.dribbble.com/users/285475/screenshots/2083086/dribbble_1.gif);
height: 400px;
background-position: center;
background-repeat: no-repeat;
}
.four_zero_four_bg h1 {
font-size: 80px;
margin: 0;
/* padding-top: 140px; */
color: black;
}
.contant_box_404 {
margin-top: -50px;
}
.contant_box_404 h3 {
font-size: 30px;
margin: 20px 0;
}
.contant_box_404 p {
font-size: 16px;
}
.link_404 {
color: #fff !important;
padding: 10px 20px;
background: #6c757d;
margin: 20px 0;
display: inline-block;
text-decoration: none;
}
</style>
</head>
<body>
<section class="page_404">
<div class="container">
<div class="four_zero_four_bg">
<h1>404</h1>
</div>
<div class="contant_box_404">
<h3>Looks like you're lost</h3>
<p>The page you are looking for is not available!</p>
<a href="/" class="link_404">Go to Home</a>
</div>
</div>
</section>
</body></html>