-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
56 lines (51 loc) · 1.64 KB
/
index.html
File metadata and controls
56 lines (51 loc) · 1.64 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
<!DOCTYPE html>
<html lang="zh-Hant">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>個人網站</title>
<link rel="stylesheet" href="style.css"/>
<link rel="icon" href="image/yu.ico" type="image/x-icon" />
<meta name="description" content="這是我的個人網站,展示我的經歷和作品。" />
</head>
<body>
<header>
<nav class="navbar">
<a href="/" class="logo-link">
<img src="image/yu.png" alt="Logo" class="logo-img">
<span class="logo">我的網站</span>
</a>
<button class="hamburger" id="menu-toggle">☰</button>
<ul class="nav-links desktop">
<li><a href="about">關於我</a></li>
<li><a href="experience">學經歷</a></li>
</ul>
</nav>
</header>
<!-- 手機版側邊選單 -->
<div id="mobile-menu" class="mobile-menu">
<button id="close-menu" class="close-btn">×</button>
<ul>
<li><a href="about" onclick="closeMenu()">關於我</a></li>
<li><a href="experience" onclick="closeMenu()">學經歷</a></li>
</ul>
</div>
<!-- 主內容 -->
<main>
<section id="about">
<h1>關於我</h1>
<p>這裡是你的自我介紹內容。</p>
</section>
<section id="experience">
<h1>學經歷</h1>
<p>這裡是你的學校與工作經歷。</p>
</section>
</main>
<footer class="site-footer">
<p>Copyright © 2025 Tsung-yu Yeh. All Right Reserved.</p>
<p>Generative AI is used for assisting in website designing.</p>
<p>Last updated: 2025/05/11 00:23</p>
</footer>
<script src="script.js"></script>
</body>
</html>