Files
freeCodeCamp/curriculum/challenges/japanese/01-responsive-web-design/applied-visual-design/set-the-font-weight-for-multiple-heading-elements.md
2022-01-20 20:30:18 +01:00

2.9 KiB

id, title, challengeType, videoUrl, forumTopicId, dashedName
id title challengeType videoUrl forumTopicId dashedName
587d781c367417b2b2512ac3 複数の見出し要素の font-weight を設定する 0 https://scrimba.com/c/crVWRHq 301069 set-the-font-weight-for-multiple-heading-elements

--description--

ひとつ前のチャレンジでは各見出しタグの font-size を設定しました。次は font-weight を調整してみましょう。

font-weight プロパティは、文字の太さまたは細さを設定します。

--instructions--

  • h1 タグの font-weight を 800 に設定してください。
  • h2 タグの font-weight を 600 に設定してください。
  • h3 タグの font-weight を 500 に設定してください。
  • h4 タグの font-weight を 400 に設定してください。
  • h5 タグの font-weight を 300 に設定してください。
  • h6 タグの font-weight を 200 に設定してください。

--hints--

h1 タグの font-weight プロパティは 800 に設定される必要があります。

assert($('h1').css('font-weight') == '800');

h2 タグの font-weight プロパティは 600 に設定される必要があります。

assert($('h2').css('font-weight') == '600');

h3 タグの font-weight プロパティは 500 に設定される必要があります。

assert($('h3').css('font-weight') == '500');

h4 タグの font-weight プロパティは 400 に設定される必要があります。

assert($('h4').css('font-weight') == '400');

h5 タグの font-weight プロパティは 300 に設定される必要があります。

assert($('h5').css('font-weight') == '300');

h6 タグの font-weight プロパティは 200 に設定される必要があります。

assert($('h6').css('font-weight') == '200');

--seed--

--seed-contents--

<style>
  h1 {
    font-size: 68px;

  }
  h2 {
    font-size: 52px;

  }
  h3 {
    font-size: 40px;

  }
  h4 {
    font-size: 32px;

  }
  h5 {
    font-size: 21px;

  }
  h6 {
    font-size: 14px;

  }
</style>
<h1>This is h1 text</h1>
<h2>This is h2 text</h2>
<h3>This is h3 text</h3>
<h4>This is h4 text</h4>
<h5>This is h5 text</h5>
<h6>This is h6 text</h6>

--solutions--

<style>
  h1 {
    font-size: 68px;
    font-weight: 800;
  }
  h2 {
    font-size: 52px;
    font-weight: 600;
  }
  h3 {
    font-size: 40px;
    font-weight: 500;
  }
  h4 {
    font-size: 32px;
    font-weight: 400;
  }
  h5 {
    font-size: 21px;
    font-weight: 300;
  }
  h6 {
    font-size: 14px;
    font-weight: 200;
  }
</style>
<h1>This is h1 text</h1>
<h2>This is h2 text</h2>
<h3>This is h3 text</h3>
<h4>This is h4 text</h4>
<h5>This is h5 text</h5>
<h6>This is h6 text</h6>