curriculum/challenges/english/blocks/applied-visual-design/587d781c367417b2b2512ac2.md
The font-size property is used to specify how large the text is in a given element. This rule can be used for multiple elements to create visual consistency of text on a page. In this challenge, you'll set the values for all h1 through h6 tags to balance the heading sizes.
In the style tags, set the font-size of the:
h1 tag to 68px.h2 tag to 52px.h3 tag to 40px.h4 tag to 32px.h5 tag to 21px.h6 tag to 14px.Your code should set the font-size property for the h1 tag to 68 pixels.
const fontSizeOfh1 = new __helpers.CSSHelp(document).getStyle('h1')?.getPropertyValue('font-size');
assert.equal(fontSizeOfh1 ,'68px');
Your code should set the font-size property for the h2 tag to 52 pixels.
const fontSizeOfh2 = new __helpers.CSSHelp(document).getStyle('h2')?.getPropertyValue('font-size');
assert.equal(fontSizeOfh2 ,'52px');
Your code should set the font-size property for the h3 tag to 40 pixels.
const fontSizeOfh3 = new __helpers.CSSHelp(document).getStyle('h3')?.getPropertyValue('font-size');
assert.equal(fontSizeOfh3 ,'40px');
Your code should set the font-size property for the h4 tag to 32 pixels.
const fontSizeOfh4 = new __helpers.CSSHelp(document).getStyle('h4')?.getPropertyValue('font-size');
assert.equal(fontSizeOfh4 , '32px');
Your code should set the font-size property for the h5 tag to 21 pixels.
const fontSizeOfh5 = new __helpers.CSSHelp(document).getStyle('h5')?.getPropertyValue('font-size');
assert.equal(fontSizeOfh5 ,'21px');
Your code should set the font-size property for the h6 tag to 14 pixels.
const fontSizeOfh6 = new __helpers.CSSHelp(document).getStyle('h6')?.getPropertyValue('font-size');
assert.equal(fontSizeOfh6 , '14px');
<style>
</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>
<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>