Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
69 changes: 69 additions & 0 deletions frontend/public/about-me.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,69 @@
body {
min-height: 100vh;
margin: 0;
padding: 40px 20px;
box-sizing: border-box;
font-family: Arial, "microsoft YaHei", sans-serif;
color: #1f2937;
background-color: #f4f5f7;
}

.card {
max-width: 720px;
margin: 0 auto;
padding: 32px;
background-color: white;
border-radius: 16px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

h1 {
margin-top: 0;
color: #2563eb;
}

h2 {
margin-top: 28px;
padding-left: 10px;
color: #374151;
border-left: 4px solid #2563eb;
}

ul,
ol {
padding-left: 24px;
line-height: 1.8;
}

li {
margin-bottom: 6px;
}

a {
display: inline-block;
margin-top: 20px;
padding: 10px 16px;
color: white;
background-color: #2563eb;
text-decoration: none;
border-radius: 8px;
}

a:hover {
background-color: #1d4ed8;
}

@media (max-width: 600px) {
body {
padding: 20px 12px;
}

.card {
padding: 24px 20px;
border-radius: 12px;
}

h1 {
font-size: 28px;
}
}
29 changes: 29 additions & 0 deletions frontend/public/about-me.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
<!DOCTYPE html>
<html lang="zh-CN">

<head>
<link rel="stylesheet" href="./about-me.css" />
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>关于我</title>
</head>

<body>
<main class="card">
<h1>关于我</h1>
<p>我是一名热爱编程的非专业学生,来自秀钟书院三字班</p>
<h2>我的爱好</h2>
<ul>
<li>打台球</li>
<li>打麻将</li>
<li>健身</li>
</ul>
<h2>我的学习目标</h2>
<ol>
<li>学会web开发</li>
</ol>
<a href="./index.html">返回首页</a>
</main>
</body>

</html>
2 changes: 2 additions & 0 deletions frontend/public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@ <h1 style="color: purple;">这是一个趣味会议软件</h1>
<a href="./main.html">进入主页</a>
&nbsp;&nbsp;&nbsp;&nbsp;
<a href="./about.html" target="_blank">关于这个工程</a>
&nbsp;&nbsp;&nbsp;&nbsp;
<a href="./about-me.html">关于我</a>
</div>
</body>
</html>