2018-10-12 15:37:13 -04:00
---
title: Specify How Fonts Should Degrade
---
2019-07-24 00:59:27 -07:00
# Specify How Fonts Should Degrade
2018-10-12 15:37:13 -04:00
2019-07-24 00:59:27 -07:00
---
## Problem Explanation
2018-12-08 18:41:33 +04:00
We need to apply the ```monospace` `` font to the ` ``h2` `` element, so that it now has two fonts - ` ``Lobster` `` and ` ``monospace` ``. After, we need to comment out that import of the ` ``Lobster` `` font(using the HTML comments you learned before) from Google Fonts so that it isn't available anymore.
2018-10-12 15:37:13 -04:00
2019-07-24 00:59:27 -07:00
---
## Solutions
< details > < summary > Solution 1 (Click to Show/Hide)< / summary >
2018-10-12 15:37:13 -04:00
2018-12-08 18:41:33 +04:00
To the property ```font-family` `` in selector ` ``h2` ``, in addition to ` ``Lobster` `` font we need to add ` ``monospace` ``:
```css
h2 {
font-family: Lobster, monospace;
}
```
After this, we need to comment import of the ```Lobster` `` font:
```css
< link href = "https://fonts.googleapis.com/css?family=Lobster" rel = "stylesheet" type = "text/css" >
```
select all import and ```ctrl+/` ``:
```css
<!-- <link href="https://fonts.googleapis.com/css?family=Lobster" rel="stylesheet" type="text/css"> -->
```
2019-07-24 00:59:27 -07:00
< / details >