I need to add two new type selectors (h1 and h2). Use the Font-size property for both, but use the value 40px for the h1 and 30px for the h2.
The two below do not work:
(1)
.h1,h2 {
Font-size: 40px, 30px;
}
(2)
h1 {
Font-size: 40px;
}
h2 {
Font-size: 30px;
}