这是一个包含多个网址和联系方式的简约地址页示例。这个页面设计适合用于个人网站、企业网站或者其他在线平台,展示多个重要链接和联系方式。
HTML代码
<!DOCTYPE html>
<html lang="en">
<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;
background-color: #f5f5f5;
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
.container {
background-color: #ffffff;
padding: 20px;
border-radius: 8px;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
text-align: center;
width: 300px;
}
h1 {
font-size: 24px;
color: #333;
margin-bottom: 10px;
}
p {
font-size: 16px;
color: #666;
margin-bottom: 20px;
}
.links {
margin-bottom: 20px;
}
.links a {
display: block;
margin: 5px 0;
padding: 10px 20px;
background-color: #007BFF;
color: #ffffff;
text-decoration: none;
border-radius: 4px;
font-size: 16px;
transition: background-color 0.3s ease;
}
.links a:hover {
background-color: #0056b3;
}
.contact {
font-size: 16px;
color: #333;
}
.contact a {
color: #007BFF;
text-decoration: none;
}
.contact a:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<div class="container">
<h1>我的网址地址页</h1>
<p>欢迎访问我的网站和社交媒体!</p>
<div class="links">
<a href="https://[你的个人网站]" target="_blank">个人网站</a>
<a href="https://[你的博客]" target="_blank">博客</a>
<a href="https://[你的GitHub]" target="_blank">GitHub</a>
<a href="https://[你的LinkedIn]" target="_blank">LinkedIn</a>
</div>
<div class="contact">
<p>联系方式:</p>
<p>邮箱:<a href="mailto:[你的邮箱]">[你的邮箱]</a></p>
<p>电话:[你的电话]</p>
</div>
</div>
</body>
</html>
|