--- id: 615f3cafd794015aa9547a6d title: Step 12 challengeType: 0 dashedName: step-12 --- # --description-- Remember that the use of `h1`, `h2`, and similar tags determine the semantic structure of your HTML. However, you can adjust the CSS of these elements to control the visual flow and hierarchy. Create an `h1` rule and set the `font-weight` property to `800`. This will make your `h1` text bolder. # --hints-- You should create an `h1` selector. ```js assert(new __helpers.CSSHelp(document).getStyle('h1')); ``` Your `h1` selector should have a `font-weight` property set to `800`. ```js assert(new __helpers.CSSHelp(document).getStyle('h1')?.fontWeight === '800'); ``` # --seed-- ## --seed-contents-- ```html Nutrition Label

Nutrition Facts

8 servings per container

Serving size 2/3 cup (55g)

``` ```css * { box-sizing: border-box; } html { font-size: 16px; } body { font-family: 'Open Sans', sans-serif; } .label { border: 2px solid black; width: 270px; margin: 20px auto; padding: 0 7px; } --fcc-editable-region-- --fcc-editable-region-- ```