服务器主导航页代码示例 - 快速创建网站导航
<!DOCTYPE html>
<html>
<head>
<title>服务器主导航页</title>
<style>
body {
font-family: Arial, sans-serif;
text-align: center;
}
h1 {
color: #333;
margin-top: 100px;
}
ul {
list-style-type: none;
padding: 0;
}
li {
display: inline-block;
margin: 10px;
}
a {
text-decoration: none;
color: #333;
padding: 5px 10px;
border: 1px solid #333;
border-radius: 5px;
}
a:hover {
background-color: #333;
color: #fff;
}
</style>
</head>
<body>
<h1>欢迎访问服务器主导航页</h1>
<ul>
<li><a href="http://example.com">链接1</a></li>
<li><a href="http://example.com">链接2</a></li>
<li><a href="http://example.com">链接3</a></li>
<li><a href="http://example.com">链接4</a></li>
</ul>
</body>
</html>
原文地址: https://www.cveoy.top/t/topic/qinF 著作权归作者所有。请勿转载和采集!