Skip to content
Merged
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
25 changes: 25 additions & 0 deletions students/2025-11-04-midiaruyo/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>測試git提交</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="wrap">
<div class="header">
<a href="">
<img src="people.png" alt="提交git測試">
</a>
</div>
<div class="content">
<p>
打給賀~哇西咪滴阿如唷,這灰嘎油~~
</p>
</div>
<div class="footer"><p> 測試 git 提交 By midi (midiaruyo)</p></div>

</div>
</body>
</html>
Binary file added students/2025-11-04-midiaruyo/people.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
96 changes: 96 additions & 0 deletions students/2025-11-04-midiaruyo/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,96 @@
/* http://meyerweb.com/eric/tools/css/reset/
v2.0 | 20110126
License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
font: inherit;
vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
display: block;
}
body {
line-height: 1;
}
ol, ul {
list-style: none;
}
blockquote, q {
quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
content: '';
content: none;
}
table {
border-collapse: collapse;
border-spacing: 0;
}

.wrap
{
margin-left: auto;
margin-right: auto;
width: 600px;
}


.header
{
text-align: center;
background-color: lightyellow;
}
.header a
{
display: block;
}
.header a:hover
{
background-color: snow;
}
.header a img
{
width: 20%;
height: auto;
}

.content
{
border: 1px solid lightgray;
padding: 10px;
}
.content p
{
color: green;
text-align: center;
padding: 10px;
}


.footer p
{
color:white;
background-color: green;
text-align: center;
padding: 10px;
}