Skip to content
Closed
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
14 changes: 14 additions & 0 deletions students/2025-11-04-kelvinwat/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>I'm Kelvin WAT</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<h1>我是 Kelvin WAT</h1>
<p>這是我第一次參加<a href="https://www.hexschool.com/" target="_blank">六角學院</a>的課程,請多多指教!</p>
<img src="people.jpg" alt="成功的鑰匙">
</body>
</html>
Binary file added students/2025-11-04-kelvinwat/people.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
22 changes: 22 additions & 0 deletions students/2025-11-04-kelvinwat/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
h1{
font-size: 30px;
color: black;
}

h1:hover{
font-size: 50px;
color: red;
}

a{
color: black;
}

a:hover{
font-size: 30px;
color: blue;
}

img:hover{
transform: rotateY(180deg);
}
Loading