写一个个人网址导航页html
时间: 2024-02-23 13:49:43 浏览: 150
<!DOCTYPE html>
<html>
<head>
<title>个人网址导航页</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f2f2f2;
}
header {
background-color: #333;
color: #fff;
padding: 20px;
text-align: center;
}
h1 {
margin: 0;
font-size: 36px;
}
nav {
background-color: #ddd;
padding: 20px;
display: flex;
flex-wrap: wrap;
justify-content: center;
align-items: center;
text-align: center;
}
a {
display: block;
margin: 10px;
padding: 10px;
background-color: #fff;
color: #333;
text-decoration: none;
border-radius: 5px;
box-shadow: 0 0 10px rgba(0,0,0,0.2);
transition: all 0.3s ease-in-out;
}
a:hover {
transform: scale(1.1);
box-shadow: 0 0 15px rgba(0,0,0,0.4);
}
</style>
</head>
<body>
<header>
<h1>个人网址导航页</h1>
</header>
<nav>
<a href="https://www.google.com">Google</a>
<a href="https://www.baidu.com">百度</a>
<a href="https://www.zhihu.com">知乎</a>
<a href="https://www.github.com">GitHub</a>
<a href="https://www.youtube.com">YouTube</a>
<a href="https://www.instagram.com">Instagram</a>
<a href="https://www.facebook.com">Facebook</a>
<a href="https://www.twitter.com">Twitter</a>
<a href="https://www.amazon.com">Amazon</a>
<a href="https://www.jd.com">京东</a>
<a href="https://www.taobao.com">淘宝</a>
<a href="https://www.douban.com">豆瓣</a>
</nav>
</body>
</html>
阅读全文