remove fonts

This commit is contained in:
Luke 2023-05-15 09:04:55 +02:00 committed by GitHub
parent 9430dfcef9
commit b8264717df
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
33 changed files with 0 additions and 35 deletions

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View file

@ -1,35 +0,0 @@
# The Montserrat Font Project
To use this font as a webfont, ```Montserrat.css``` is included.
## How to use
### 1. @import
You can import the file into your stylesheet as follows:
```css
@import url("static/fonts/Montserrat/fonts/webfonts/Montserrat.css");
```
**NOTE:** The directory where the stylesheet is placed.
Then we can use it to style elements:
```css
body {
font-family: 'Montserrat', sans-serif;
font-weight: 400;
}
```
### 2. \<link>ing a stylesheet
Similarly, you could link to the same asset as you would any other CSS filter, in the \<head> of the HTML document rather than in the CSS:
```html
<link rel="stylesheet" type="text/css" href="static/fonts/Montserrat/fonts/webfonts/Montserrat.css">
```
**NOTE:** The directory where the stylesheet is placed.
Then we can use it to style elements:
```css
body {
font-family: 'Montserrat', sans-serif;
font-weight: 400;
}
```