📅  最后修改于: 2023-12-03 15:10:06.455000             🧑  作者: Mango
投资组合模板 HTML 可用于创建漂亮的投资组合网页,展示个人或公司的投资组合。此模板具有响应式设计,能够在各种设备上自适应大小。
以下是示例 HTML 代码片段:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>投资组合</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<div class="container">
<h1>我的投资组合</h1>
<nav>
<ul>
<li><a href="#">首页</a></li>
<li><a href="#">我的项目</a></li>
<li><a href="#">联系我</a></li>
</ul>
</nav>
</div>
</header>
<section id="hero">
<h2>我是投资者</h2>
<p>我正在开发一些很酷的项目,希望能够与你们分享!</p>
</section>
<section id="projects">
<div class="container">
<h2>我的项目</h2>
<ul>
<li>
<a href="#"><img src="project-1.jpg" alt="项目 1"></a>
<h3>项目 1</h3>
<p>这是一个很酷的项目,有很多人都在关注它。</p>
</li>
<li>
<a href="#"><img src="project-2.jpg" alt="项目 2"></a>
<h3>项目 2</h3>
<p>这也是一个很酷的项目,它正在飞速发展。</p>
</li>
<li>
<a href="#"><img src="project-3.jpg" alt="项目 3"></a>
<h3>项目 3</h3>
<p>这还是一个很酷的项目,它最近获得了很多人的关注。</p>
</li>
</ul>
</div>
</section>
<section id="contact">
<div class="container">
<h2>联系我</h2>
<form>
<label for="name">姓名</label>
<input type="text" id="name" name="name">
<label for="email">邮箱</label>
<input type="email" id="email" name="email">
<label for="message">信息</label>
<textarea id="message" name="message"></textarea>
<button type="submit">发送</button>
</form>
</div>
</section>
<footer>
<div class="container">
<p>© 2021 我的投资组合</p>
<ul>
<li><a href="#">隐私政策</a></li>
<li><a href="#">使用条款</a></li>
</ul>
</div>
</footer>
</body>
</html>
如果您需要自定义此模板,只需修改 style.css
文件即可,例如更改字体大小或背景颜色。主要 CSS 代码如下:
/* 全局样式 */
body {
font-family: 'Avenir Next', Arial, sans-serif;
font-size: 18px;
line-height: 1.6;
margin: 0;
}
.container {
width: 80%;
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}
/* 标题样式 */
h1, h2, h3 {
margin-top: 0;
}
h1 {
font-size: 3rem;
text-align: center;
}
h2 {
font-size: 2rem;
margin-bottom: 1.5rem;
}
h3 {
font-size: 1.5rem;
}
/* 导航样式 */
nav ul {
margin: 0;
padding: 0;
list-style: none;
text-align: center;
}
nav li {
display: inline-block;
margin: 0 10px;
}
nav a {
color: #333;
text-decoration: none;
}
/* 主页面样式 */
#hero {
background: url('hero-bg.jpg') center center no-repeat;
background-size: cover;
height: 500px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
#hero h2 {
font-size: 3rem;
color: #fff;
text-align: center;
margin-bottom: 20px;
}
#hero p {
font-size: 1.5rem;
color: #fff;
text-align: center;
}
#projects {
background: #f2f2f2;
padding: 40px 0;
}
#projects ul {
margin: 0;
padding: 0;
list-style: none;
display: flex;
justify-content: space-between;
}
#projects li {
width: 30%;
background: #fff;
border: 1px solid #ccc;
box-shadow: 0 4px 6px rgba(0,0,0,0.1);
text-align: center;
margin-bottom: 20px;
}
#projects li img {
width: 100%;
height: auto;
}
#projects li h3 {
margin-top: 20px;
margin-bottom: 10px;
}
#projects li p {
font-size: 1rem;
color: #666;
margin: 20px;
}
#contact {
padding: 40px 0;
text-align: center;
}
#contact form {
margin: 0 auto;
max-width: 500px;
}
#contact label {
display: block;
margin-bottom: 10px;
}
#contact input,
#contact textarea {
width: 100%;
padding: 10px;
font-size: 16px;
margin-bottom: 20px;
border-radius: 4px;
border: 1px solid #ccc;
}
#contact button[type="submit"] {
background: #333;
color: #fff;
border: none;
border-radius: 4px;
padding: 10px 20px;
font-size: 1rem;
}
此投资组合模板 HTML 非常易于使用和定制,可以帮助您快速创建一个漂亮的投资组合网页!