-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
37 lines (33 loc) · 1.15 KB
/
index.html
File metadata and controls
37 lines (33 loc) · 1.15 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
<!DOCTYPE html>
<html lang="zh-Hant">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>我的 GitHub 個人頁面</title>
<link rel="stylesheet" href="style.css" />
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
</head>
<body>
<h1>哈囉!我是 XXX</h1>
<p>這是我的 GitHub 個人頁面:<a href="https://github.com/你的帳號" target="_blank">我的 GitHub</a></p>
<h2>學習成果展示</h2>
<ul>
<li>Git 練習截圖</li>
<li>HTML / CSS 練習截圖</li>
<li>Ajax / jQuery 練習截圖</li>
</ul>
<button id="showImg">顯示 / 隱藏截圖</button>
<div id="images" style="display:none;">
<img src="git.png" width="300">
<img src="html.png" width="300">
<img src="jquery.png" width="300">
</div>
<h2>學習心得</h2>
<p>這次作業讓我更了解如何使用 Git 管理專案,也學會了 HTML、CSS 和 jQuery。透過 AI 工具(例如 ChatGPT)協助,我可以更快理解語法和錯誤原因。</p>
<script>
$("#showImg").click(function(){
$("#images").toggle();
});
</script>
</body>
</html>