Skip to content

Commit 618a55b

Browse files
authored
Merge pull request #25 from yojwei/main
新增學生簽到頁:大昌(yojwei)
2 parents 39024f0 + 9576504 commit 618a55b

File tree

3 files changed

+72
-0
lines changed

3 files changed

+72
-0
lines changed
Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
<!DOCTYPE html>
2+
<html lang="zh-Hant">
3+
<head>
4+
<meta charset="utf-8" />
5+
<meta name="viewport" content="width=device-width,initial-scale=1" />
6+
<title>大昌 — 簽到頁面</title>
7+
<link rel="stylesheet" href="style.css" />
8+
</head>
9+
<body>
10+
<main class="container">
11+
<h1>大昌(yojwei)</h1>
12+
<img class="avatar" src="intro.png" alt="大昌(yojwei)的照片" />
13+
<p>你好!我是大昌,這是我在 Vibe Coding Camp 的簽到頁面。</p>
14+
15+
<section>
16+
<h2>自我介紹</h2>
17+
<p>我喜歡前端開發、學習新的 CSS 技巧與互動效果。期待和大家一起學習!</p>
18+
</section>
19+
20+
<section>
21+
<h2>聯絡方式</h2>
22+
<ul>
23+
<li>
24+
Email: <a href="mailto:yojwei@example.com">yojwei@example.com</a>
25+
</li>
26+
</ul>
27+
</section>
28+
</main>
29+
</body>
30+
</html>
26.5 KB
Loading
Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
/* 簡單樣式(選填) */
2+
:root {
3+
--bg: #f7f9fc;
4+
--accent: #2b6cb0;
5+
--text: #1a202c;
6+
}
7+
body {
8+
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
9+
"Noto Sans TC", "Helvetica Neue", Arial;
10+
background: var(--bg);
11+
color: var(--text);
12+
margin: 0;
13+
}
14+
.container {
15+
max-width: 720px;
16+
margin: 40px auto;
17+
padding: 24px;
18+
background: #fff;
19+
border-radius: 8px;
20+
box-shadow: 0 6px 18px rgba(18, 38, 63, 0.06);
21+
}
22+
h1 {
23+
color: var(--accent);
24+
margin: 0 0 8px 0;
25+
text-align: center;
26+
}
27+
section {
28+
margin-top: 18px;
29+
}
30+
a {
31+
color: var(--accent);
32+
}
33+
34+
/* Avatar image for the intro */
35+
.avatar {
36+
display: block;
37+
margin: 12px auto;
38+
max-width: 200px;
39+
width: 100%;
40+
height: auto;
41+
border-radius: 5%;
42+
}

0 commit comments

Comments
 (0)