要创建一个带有外部链接访问框的 HTML 页面,可以通过 HTML 和 CSS/Less 来实现。下面是一个基本的示例:
代码仅供参考
HTML
<!DOCTYPE html>
<head>
<title>外部链接访问框</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="external-link-box">
<h2>外部链接</h2>
<p>您即将离开社区,请注意您的帐号和财产安全。</p>
<a href="https://145hub.pages.dev" target="_blank" class="external-link">访问外部链接</a>
</div>
</body>
</html>
CSS/Less
body {
font-family: Arial, sans-serif;
background-color: #f0f0f0;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
}
.external-link-box {
background-color: #fff;
border: 1px solid #ccc;
padding: 20px;
border-radius: 8px;
max-width: 400px;
text-align: center;
box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
.external-link-box h2 {
color: #333;
font-size: 1.5rem;
margin-bottom: 10px;
}
.external-link-box p {
color: #666;
font-size: 1rem;
margin-bottom: 20px;
}
.external-link {
display: inline-block;
background-color: #007bff;
color: #fff;
text-decoration: none;
padding: 10px 20px;
border-radius: 5px;
transition: background-color 0.3s ease;
}
.external-link:hover {
background-color: #0056b3;
}
这个示例提供了一个简单但功能齐全的外部链接访问框的实现。根据需要可以进行进一步的自定义和样式调整。