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
18 changes: 18 additions & 0 deletions students/2025-12-03-wuerhchun/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>爾均 | 自我介紹</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<section class="content">
<img src="is_me.png" alt="">
<h1>Hello</h1>
<p>我是爾均 Ansel,擁有 1.5 年的網頁全端開發經驗以及 1 年的前端開發經驗。<br>
熟悉 Django、Vue 開發,以及導入 CI/CD 流程經驗。
</p>
</section>
</body>
</html>
Binary file added students/2025-12-03-wuerhchun/is_me.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
35 changes: 35 additions & 0 deletions students/2025-12-03-wuerhchun/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

body {
background-color: #EFE9E2; /* 溫暖奶油背景 */
}

img {
display: block;
width: 300px;
aspect-ratio: 1 / 1;
object-fit: cover;
border-radius: 50%;
border: 5px solid #B89B7B; /* 杏橘框 */
margin: 1.5rem auto;
}

h1 {
text-align: center;
font-size: 60px;
font-weight: 700;
margin-bottom: 1.5rem;
color: #B89B7B; /* 活力莓果粉 */
letter-spacing: 1px;
}

p {
text-align: center;
font-size: 1.25rem;
line-height: 1.5;
color: #2A2A2A; /* 易讀深灰 */
}