--- id: 587d781c367417b2b2512ac3 title: 複数の見出し要素の font-weight を設定する challengeType: 0 videoUrl: 'https://scrimba.com/c/crVWRHq' forumTopicId: 301069 dashedName: set-the-font-weight-for-multiple-heading-elements --- # --description-- ひとつ前のチャレンジでは各見出しタグの `font-size` を設定しました。次は `font-weight` を調整してみましょう。 `font-weight` プロパティは、文字の太さまたは細さを設定します。 # --instructions-- # --hints-- `h1` タグの `font-weight` プロパティは 800 に設定される必要があります。 ```js assert($('h1').css('font-weight') == '800'); ``` `h2` タグの `font-weight` プロパティは 600 に設定される必要があります。 ```js assert($('h2').css('font-weight') == '600'); ``` `h3` タグの `font-weight` プロパティは 500 に設定される必要があります。 ```js assert($('h3').css('font-weight') == '500'); ``` `h4` タグの `font-weight` プロパティは 400 に設定される必要があります。 ```js assert($('h4').css('font-weight') == '400'); ``` `h5` タグの `font-weight` プロパティは 300 に設定される必要があります。 ```js assert($('h5').css('font-weight') == '300'); ``` `h6` タグの `font-weight` プロパティは 200 に設定される必要があります。 ```js assert($('h6').css('font-weight') == '200'); ``` # --seed-- ## --seed-contents-- ```html

This is h1 text

This is h2 text

This is h3 text

This is h4 text

This is h5 text
This is h6 text
``` # --solutions-- ```html

This is h1 text

This is h2 text

This is h3 text

This is h4 text

This is h5 text
This is h6 text
```