0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

CSSとは、記述の仕方など

Last updated at Posted at 2021-03-29

CSSとは

HTMLに装飾を加えるための言語です。

indexファイル

< html>
< head>
< meta charset="UTF-8">
< title>HTML学習用ウェブサイト< /title>
< link rel="stylesheet" href="style3-3.css">
< /head>
< body>
< h1>
これは見出しです
< /h1>
< p>
1つ目の段落です
< /p>
< p class="second-message">
2つ目の段落です
< /p>
< p>
3つ目の段落です。< b>この部分は太字になります。< /b>
< /p>
< a href="https://www.google.com/">クリックすると、Googleへ移動します。
< /body>
< /html>

cssファイル

p {
font-size: 24px;
color: red;
}
.second-message {
color: orange;
font-size: 12px;
}

  • p{}は< p>〜< /p>の部分をp{}のようにすること
  • .second-messageはclass = "second-message"となっているところを.second-message{}のようにすること
0
0
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?