Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add <p> & style #49

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
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
19 changes: 11 additions & 8 deletions all.css
Original file line number Diff line number Diff line change
@@ -1,14 +1,17 @@
body{
color: red;
body {
color: red;
}
h1{
color: green;
h1 {
color: green;
}

.hexschool {
text-align: center;
color: #00cc99;
font-size: 24px;
font-weight: bold;
text-align: center;
color: #00cc99;
font-size: 24px;
font-weight: bold;
}

.pr20221022 {
color: navy;
}
25 changes: 12 additions & 13 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,24 +1,23 @@
<!DOCTYPE html>
<html lang="en">

<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>HexSchool PR practice</title>
<link rel="stylesheet" href="all.css">
</head>
<link rel="stylesheet" href="all.css" />
</head>

<body>
<h1>yunyun PR practice </h1>
<body>
<h1>yunyun PR practice</h1>
<div class="hexschool">
<p>Hello HexSchool!</p>
<p>Hello HexSchool!</p>
</div>
<div>This is new PR.</div>

<h2>謝謝洧杰老師,讓我學會git,真的教得很清楚又容易懂!</h2>
<h3>謝謝老師助教,提供管道讓我們練習 PR</h3>
<p>PR 練習</p>
</body>

</html>
<p class="pr20221022">感謝洧杰老師 & 助教!</p>
</body>
</html>