Skip to content
Open
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
22 changes: 22 additions & 0 deletions students/2025-12-03-skyrand/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About SkyRand</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<h1>Hello 我是 SkyRand !!</h1>
<p>這是我:</p>
<img src="people.png" alt="SkyRand Image">
<h2>關於我的三件事</h2>
<ol>
<li>胡琴演奏員</li>
<li>現場音控</li>
<li>影音視訊系統架設</li>
</ol>
<h2>Contact</h2>
<p><a href="https://www.facebook.com/john5812206/">FB</a></p>
</body>
</html>
Binary file added students/2025-12-03-skyrand/people.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
43 changes: 43 additions & 0 deletions students/2025-12-03-skyrand/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
h1{
color: brown;
text-align: left;
text-indent: 26px;
font-family:Verdana, Geneva, Tahoma, sans-serif;
font-size: 24px;
}
p{
font-family: 'Courier New', Courier, monospace;
font-size: 18px;
margin-left: 30px;
}
img{
display: block;
margin-left: 30px;
width: 20%;
}
ol{
font-family: 'Lucida Console', 'Courier New', monospace;
font-size: 18px;
margin-left: 50px;
}
a{
font-family: 'Arial', sans-serif;
font-size: 18px;
margin-left: 30px;
text-decoration: none;
color: blue;
}
a:hover {
text-decoration: underline;
color: darkblue;
}
body {
background-color: #f0f8ff;
margin: 20px;
}
h2 {
color: #2e8b57;
font-family: 'Georgia', serif;
font-size: 22px;
margin-left: 30px;
}