前言:
原本是弄来自己一个地址(VPS.ink)虚拟主机的域名绑定页面做单页展示的,但是没想到这么好看,哈哈,所以分享出来给大家啦~
就一个简单的单页,新建一个index.php文件。并把代码放入即可
PS:
创作不易,版权所有,转载还请留个地址,谢谢!
代码:
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>大圣云计算</title>
<style>
body{
font-family: 'Arial', sans-serif;
margin: 0;
padding: 0;
background-color: #f7f7f7;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
min-height: 100vh;
box-sizing: border-box;
}
.container{
width: 100%;
max-width: 600px;
padding: 20px;
background-color: #fff;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
box-sizing: border-box;
margin-bottom: 20px;
}
.logo{
display: block;
margin: 0 auto 20px;
max-width: 100px;
}
h1{
color: #333;
text-align: center;
margin-bottom: 20px;
}
p{
color: #666;
line-height: 1.6;
text-align: center;
margin-bottom: 20px;
}
.btn{
display: block;
width: 100%;
padding: 10px 0;
background-color: #007bff;
color: #fff;
text-align: center;
text-decoration: none;
border-radius: 5px;
margin-bottom: 20px;
}
.contact{
text-align: center;
margin-bottom: 20px;
}
.contact p{
margin: 5px 0;
}
.footer{
text-align: center;
color: #999;
font-size: 14px;
width: 100%;
box-sizing: border-box;
padding: 10px 0;
}
.footer p{
margin: 0;
}
</style>
</head>
<body>
<div class="container">
<img src="https://pan.29o.cn/view.php/197250202adf3fcfeec701d7383fd41b.png" alt="Logo" class="logo">
<h1>大圣云计算-全球云服务提供商</h1>
<p>当您看到这个页面代表您的域名解析有效<br/>大圣云计算是一家全球云服务提供商,拥有成熟的经验,海外产品仅13.9起/月<br/>其他业务:SCDN/挂机宝/NAT服务器/国内服务器/宿主机/虚拟主机</p>
<a href="https://vps.ink" class="btn" target="_blank">进入官网</a>
<div class="contact">
<p>联系方式:</p>
<p>QQ:9321856</p>
<p>邮箱:9321856@qq.com</p>
</div>
</div>
<div class="footer">
<p>版权所有 © 2025 大圣云计算 | 备案号:陕ICP备2024055554号</p>
</div>
</body>
</html>