You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

104 lines
2.2 KiB

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>关于我们</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
}
header {
background-color: #f5f5f5;
padding: 10px;
display: flex;
justify-content: space-between;
align-items: center;
}
header a {
text-decoration: none;
color: #333;
}
main {
padding: 20px;
}
h1 {
font-size: 24px;
margin-bottom: 10px;
}
p {
margin-bottom: 15px;
}
.team-member {
display: flex;
align-items: center;
margin-bottom: 20px;
}
.team-member img {
width: 80px;
height: 80px;
border-radius: 50%;
margin-right: 15px;
}
.contact-info {
margin-top: 20px;
}
.contact-info a {
text-decoration: none;
color: #007bff;
margin-right: 10px;
}
footer {
background-color: #f5f5f5;
padding: 10px;
text-align: center;
}
</style>
</head>
<body>
<main>
<h1>关于我们</h1>
<p>我们致力于为教育领域提供高效、便捷的点名系统,帮助教师更好地管理课堂,提高教学效率。</p>
<h2>团队成员</h2>
<div class="team-member">
<div>
<h3>wss</h3>
<p>原型设计前端开发</p>
</div>
</div>
<div class="team-member">
<div>
<h3>qyc</h3>
<p>后端开发</p>
</div>
</div>
<h2>产品介绍</h2>
<p>我们的点名系统具有以下特点:</p>
<ul>
<li>简单易用,教师和学生都能快速上手。</li>
<li>提供详细的点名记录和统计分析,帮助教师更好地了解学生的出勤情况。</li>
</ul>
</main>
<footer>
Copyright © 2024 [天灰灰会不会]. All rights reserved.
</footer>
</body>
</html>