Montserrat Google Font Download & CDN

Image 1
Image 1 Image 2 Image 3 Image 4 Image 5 Image 6

Montserrat is a Google font that can be downloaded and used in web development. It was designed by Julieta Ulanovsky, Sol Matas, Juan Pablo del Peral, and Jacques Le Bailly. Montserrat is available in Bold, SemiBold, Medium, and Black styles and can be used in CSS. Montserrat is used in more than 21,000,000 websites. It is a popular font choice due to its clean and modern look. Montserrat is also free to use and can be accessed via Google Fonts CDN


Montserrat Font Family CSS Style

font-family: 'Montserrat', sans-serif;

Montserrat Google Font CDN Link

<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Montserrat" rel="stylesheet">

Montserrat Google Font Import

<style>
@import url('https://fonts.googleapis.com/css2?family=Montserrat');
</style>

Montserrat Font Family CSS Editor

18px
Color:
BG Color:

Montserrat Font Family CDN

<link href="https://fonts.googleapis.com/css2?family=Roboto" rel="stylesheet">

Import

<style>
@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');
</style>

CSS

font-family: 'Montserrat', sans-serif;
Italic
Regular 400 at 48px
Montserrat: a geometric sans-serif with Buenos Aires soul, free for all.
Regular 400 at 32px
The Montserrat font family is a versatile sans-serif typeface characterized by its clean lines, open letterforms, and wide range of weights
Regular 400 at 40px
Bold and beautiful, Montserrat's geometric shapes add instant impact to your words.
Regular 400 at 24px
Born in Buenos Aires, Montserrat's geometric grace dances between modern headlines and playful posters. Its diverse weights let you tailor its personality, from confident & bold to light & airy.
Regular 400 at 36px
Here's how to download and use Montserrat font with different weights (Bold, SemiBold, Medium, Black) in your project using Google Fonts and CDN
Regular 400 at 16px
Evoking the spirit of Buenos Aires, Montserrat's geometric sans-serif struts onto the scene with confidence and clarity. Its clean lines and open letterforms lend a modern edge to headlines, while its diverse range of weights, from light to bold, allows you to tailor the type's personality to perfectly match your message

How do I apply the Montserrat Google Font to my website?

To apply the Montserrat Google Font to your website, you can follow these steps:

  1. Add the following code to the head section of your HTML file:
<link href="https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap" rel="stylesheet">
  1. In the CSS file, specify the font family for the desired elements:
body {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
}

h3 {
    font-weight: 900; /* Use the desired font weight for headings */
}

p {
    font-weight: 400; /* Use the desired font weight for paragraphs */
}
  1. To use different font weights, you can specify the font-weight property in the CSS file. For example, to use the Montserrat Thin font weight, you can add the following style:
p {
    font-weight: 100;
}

The Montserrat font family has a variety of font weights available, ranging from Thin to Black  You can use the font-weight property to specify the desired font weight for your text 

Here is the example, and please edit your code