创建个人网页是展示个人风采和技能的有效方式,以下是一个简单的HTML模板,可以帮助你开始构建自己的个人网页。
首先,你需要一个基础的HTML结构。以下是一个简单的HTML文档结构,它包括头部(head)、标题(title)、主体(body)等基本元素。
```html
<!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: f4f4f4;
}
.container {
width: 80%;
margin: auto;
overflow: hidden;
}
header {
background: 333;
color: fff;
padding-top: 30px;
min-height: 70px;
border-bottom: e8491d 3px solid;
}
header a {
color: fff;
text-decoration: none;
text-transform: uppercase;
font-size: 16px;
}
header ul {
padding: 0;
list-style: none;
}
header li {
display: inline;
padding: 0 20px 0 20px;
}
header branding {
float: left;
}
header branding h1 {
margin: 0;
}
header nav {
float: right;
margin-top: 10px;
}
header .highlight, header .current a {
color: e8491d;
font-weight: bold;
}
header a:hover {
color: ffffff;
font-weight: bold;
}
.banner {
background: url('banner.jpg') no-repeat center center/cover;
height: 400px;
text-align: center;
color: fff;
padding-top: 100px;
}
.banner h1 {
margin: 0;
font-size: 55px;
}
.about {
padding: 20px 0;
background: fff;
}
.about h2 {
text-align: center;
color: 333;
}
.about p {
color: 666;
text-align: center;
}
.skills {
padding: 20px 0;
background: fff;
}
.skills h2 {
text-align: center;
color: 333;
}
.skills ul {
list-style-type: none;
padding: 0;
}
.skills li {
background: f4f4f4;
margin-bottom: 10px;
padding: 10px;
border-radius: 5px;
}
.contact {
padding: 20px 0;
background: fff;
}
.contact h2 {
text-align: center;
color: 333;
}
.contact form {
width: 50%;
margin: 20px auto;
}
.contact input, .contact textarea {
width: 100%;
padding: 10px;
margin-bottom: 10px;
border: 1px solid ccc;
border-radius: 5px;
}
.contact input[type="submit"] {
background: e8491d;
color: fff;
border: none;
cursor: pointer;
}
.contact input[type="submit"]:hover {
background: c23616;
}
</style>
</head>
<body>
<header>
<div class="container">
<div id="branding">
<h1>我的个人网页</h1>
</div>
<nav>
<ul>
<li class="current"><a href="home">首页</a></li>
<li><a href="about">关于我</a></li>
<li><a href="skills">技能</a></li>
<li><a href="contact">联系我</a></li>
</ul>
</nav>
</div>
</header>
<section class="banner">
<div class="container">
<h1>欢迎来到我的个人网页</h1>
</div>
</section>
<section class="about">
<div class="container">
<h2>关于我</h2>
<p>在这里,你可以了解到我的基本信息、教育背景、工作经验等。</p>
</div>
</section>
<section