LoginSignup
1
1

More than 3 years have passed since last update.

CSS: CSSをHTMLに追加する

Last updated at Posted at 2020-02-24

方法1:HEADタグ内に書く方法

index.html

<header>

  <div class="area1">

  <style>
    h1 {
      color: blue;
    }
    .area1 {
      color: red;
    }
  </style>

  </div>

</header>

方法2:外部ファイルへリンクさせる方法

index.html
<header>
  <link rel="stylesheet" href="css/styles.css">
</header>

styles.css
h1 {
  color: blue;
}
1
1
0

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
1
1