Skip to content

Commit 0cb7a68

Browse files
authored
Merge pull request #1 from kcs1959/yuitof
Create a css file
2 parents 6e55388 + 6c50a86 commit 0cb7a68

File tree

4 files changed

+13
-6
lines changed

4 files changed

+13
-6
lines changed

events.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
<html>
2-
32
<head>
43
<title>Git & GitHub 講習会</title>
4+
<link rel="stylesheet" href="style.css">
55
</head>
66

77
<body>
88
<h1>イベント情報</h1>
9-
<ul>
9+
<ul class="menu">
1010
<li><a href="./index.html">KCS について</a></li>
1111
<li><a href="./groups.html">班紹介</a></li>
1212
<li>イベント情報</li>

groups.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
<html>
2-
32
<head>
43
<title>Git & GitHub 講習会</title>
4+
<link rel="stylesheet" href="style.css">
55
</head>
66

77
<body>
88
<h1>班紹介</h1>
9-
<ul>
9+
<ul class="menu">
1010
<li><a href="./index.html">KCS について</a></li>
1111
<li>班紹介</li>
1212
<li><a href="./events.html">イベント情報</a></li>

index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
<html>
2-
32
<head>
43
<title>Git & GitHub 講習会</title>
4+
<link rel="stylesheet" href="style.css">
55
</head>
66

77
<body>
88
<h1>KCS について</h1>
9-
<ul>
9+
<ul class="menu">
1010
<li>KCS について</li>
1111
<li><a href="./groups.html">班紹介</a></li>
1212
<li><a href="./events.html">イベント情報</a></li>

style.css

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
* {
2+
font-family: "ヒラギノ角ゴシック", "游ゴシック", "メイリオ", Arial, Helvetica, sans-serif;
3+
}
4+
5+
ul.menu li {
6+
display: inline;
7+
}

0 commit comments

Comments
 (0)