-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexperience.html
More file actions
236 lines (210 loc) · 7.76 KB
/
Copy pathexperience.html
File metadata and controls
236 lines (210 loc) · 7.76 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
<!DOCTYPE html>
<html lang="zh-Hant">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Joey | 個人介紹</title>
<style>
/* 新的顏色變數 */
:root {
--primary-color: #ffb74d; /* 柔和的橘色 */
--secondary-color: #ffab40; /* 飽和度較低的橘色 */
--background-light: #fefcf5; /* 淺米黃色 */
--card-background: #fff; /* 卡片背景色 */
--text-dark: #333; /* 深灰色字體 */
--text-gray: #6c757d; /* 次要灰色字體 */
}
/* 基本排版 */
body {
font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
background-color: var(--background-light);
color: var(--text-dark);
margin: 0;
padding: 0;
line-height: 1.6;
}
/* 導航列 */
.header-nav {
background-color: var(--secondary-color);
color: white;
padding: 15px 50px;
display: flex;
justify-content: space-between;
align-items: center;
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.header-nav .logo {
font-weight: bold;
font-size: 1.5em;
text-decoration: none;
color: white;
}
.header-nav nav a {
color: white;
text-decoration: none;
margin-left: 30px;
font-size: 1em;
position: relative;
padding-bottom: 5px;
transition: color 0.3s;
}
.header-nav nav a::after {
content: '';
position: absolute;
width: 100%;
height: 2px;
background-color: white;
bottom: 0;
left: 0;
transform: scaleX(0);
transition: transform 0.3s ease-in-out;
}
.header-nav nav a:hover::after {
transform: scaleX(1);
}
/* 主要區塊 */
.main-content {
padding: 20px;
max-width: 900px;
margin: 0 auto;
}
.hero-section {
text-align: center;
padding: 80px 20px;
background-color: var(--secondary-color);
border-radius: 10px;
margin-bottom: 30px;
color: white;
box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.hero-section h1 {
font-size: 2.8em;
margin: 0 0 10px 0;
color: white;
}
.hero-section p {
font-size: 1.2em;
color: #fff;
margin-bottom: 30px;
}
.cta-button {
background: linear-gradient(to right, #ff8a00, #ffb300);
color: white;
text-decoration: none;
padding: 12px 30px;
border-radius: 50px;
font-weight: bold;
transition: transform 0.3s, box-shadow 0.3s;
box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.cta-button:hover {
transform: translateY(-2px);
box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}
.content-section {
background-color: var(--card-background);
padding: 40px;
border-radius: 10px;
box-shadow: 0 4px 8px rgba(0,0,0,0.05);
margin-bottom: 30px;
text-align: center; /* 內容區塊標題與段落居中 */
}
/* 標題與列表 */
.content-section h2 {
font-size: 2em;
color: var(--text-dark);
margin-top: 0;
margin-bottom: 25px;
position: relative;
}
.content-section h2::after {
content: '';
position: absolute;
left: 50%;
bottom: -10px;
transform: translateX(-50%);
width: 60px;
height: 3px;
background-color: var(--primary-color);
border-radius: 2px;
}
.content-section p {
font-size: 1.1em;
color: var(--text-gray);
max-width: 700px;
margin: 20px auto;
}
ul {
list-style: none;
padding: 0;
margin: 0;
text-align: left; /* 列表內容靠左 */
}
li {
background-color: var(--background-light);
border-left: 5px solid var(--primary-color);
margin-bottom: 15px;
padding: 20px;
border-radius: 8px;
transition: transform 0.2s, box-shadow 0.2s;
}
li:hover {
transform: translateY(-5px);
box-shadow: 0 6px 12px rgba(0,0,0,0.1);
}
li strong {
color: var(--text-dark);
}
/* 聯絡區塊 */
.contact-section h2::after {
background-color: var(--primary-color);
}
</style>
</head>
<body>
<header class="header-nav">
<a href="index.html" class="logo">InJoy with Z Generation</a>
<nav>
<a href="the project.html">關於我</a>
<a href="competition.html">我的比賽歷程</a>
<a href="workforce.html">我的工作經歷</a>
<a href="experience.html">我的研究與其他經歷</a>
</nav>
</header>
<main class="main-content">
<section class="hero-section">
<h1>Joey 的Z世代冒險之旅</h1>
<p>
從商管進入教育,接著走向資料科學的自我成長與生涯探索之旅。
</p>
<a href="contact.html" class="cta-button">立即聯絡!</a>
</section>
<section id="about-me" class="content-section">
<h2>教育部百億海外圓夢計畫</h2>
<p>
**海外翱翔組錄取**:代表青年參與加拿大多倫多大學新創加速器與創新中心國際參訪。
</p>
</section>
<section id="skills" class="content-section">
<h2>國際研討會發表經歷</h2>
<ul>
<li>
<strong>永續社會責任</strong>:《探索大學社會責任與 STEAM 課程的融合與創新:以技職高等教育實踐定位的可能性發展與校務端支持系統為例》
</li>
<li>
<strong>社區營造與文化資產</strong>:《從社區參與到建立社區與民眾共生文化,以蟾蜍山煥民新村生態聚落為例》
</li>
<li>
<strong>永續社會-玄奘大學「文化、教育及學生事務傳承與發展」國際學術研討會</strong>:《STEM 高等教育工程領域對於大學實踐永續與社會責任之教學方法初探》
</li>
<li>
<strong>國際永續探關稅-中正大學管理學院第十五屆中小企業國際研討會</strong>:《歐盟碳關稅國際經濟與環境法之於台灣企業永續責任與綠領人才的影響》
</li>
<li>
<strong>師培轉型-暨南國際大學2023風險社會下的教育國際合作國際學術研討會</strong>:《在師資培育與大學轉型之間:當代臺灣師資培育機構的發展方向擇定兼論教育大學的定位問題》
</li>
</ul>
</section>
</main>
</body>
</html>