HTML5实现简洁好看的个人主页,个人小站
以下是一个使用HTML5和CSS3技术实现的简洁个人主页示例,包含了不同风格的导航菜单和背景样式。
<!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, html {
margin: 0;
padding: 0;
font-family: Arial, sans-serif;
}
.header {
background-color: #333;
overflow: hidden;
}
.header a {
float: left;
display: block;
color: white;
text-align: center;
padding: 14px 16px;
text-decoration: none;
}
.header a:hover {
background-color: #ddd;
color: black;
}
.header a.active {
background-color: #4CAF50;
color: white;
}
.header-right {
float: right;
}
.content {
padding: 10px 20px;
clear: both;
}
.footer {
background-color: #f2f2f2;
padding: 10px 0;
text-align: center;
}
/* 添加不同风格的背景 */
.style1 {
background-color: #f7f7f7;
color: #333;
}
.style2 {
background: url('background.jpg') no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
color: white;
}
/* 更多风格... */
</style>
</head>
<body>
<div class="header style1">
<a href="#home" class="active">首页</a>
<a href="#news">新闻</a>
<a href="#contact">联系</a>
<a href="#about">关于</a>
<div class="header-right">
<a href="#login">登录</a>
</div>
</div>
<div class="content">
<!-- 主页内容 -->
<div id="home" class="header">
<h2>欢迎来到我的主页</h2>
<p>这里是主页的内容。</p>
</div>
<!-- 新闻内容 -->
<div id="news" class="content">
评论已关闭