Poppins Font Family CDN & Download
Poppins Font Family CDN & Download:Poppins is a geometric sans-serif typeface that supports both Devanagari and Latin writing systems. It is designed by Ninad Kale (Devanagari) and Jonny Pinhorn (Latin) and is available via an open-source license . Poppins is one of the new comers to the long tradition of geometric sans-serif typefaces. It is an internationalist take on the genre and is based on pure geometry, particularly circles. Each letterform is nearly monolinear, with optical corrections applied to stroke joints where necessary to maintain an even typographic color
Download Poppins Font
Click the Button below to download the Poppins font.




Thanks for your feedback!
Your contributions will help us to improve service.
Poppins Font CDN Integration
The following code snippet serves as an example of how to integrate Poppins into a project using Google Fonts CDN:
Poppins Font CDN Example
xxxxxxxxxx
<link
href="https://fonts.googleapis.com/css2?family=Poppins: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">
This snippet can be added to the project's HTML file, ensuring that the Poppins font is loaded efficiently from the CDN.
Styling with Poppins: CSS Code
Once the font is integrated, applying it to the project's styling is a straightforward process. The following CSS code snippet demonstrates how to set the font family and size:
Poppins Font Family CSS Code
xxxxxxxxxx
<style>
body {
font-family: 'Poppins', sans-serif;
font-size: 22px;
}
</style>
The HTML body of the document showcases various weights and styles available within the Poppins font family. From the delicate Poppins Thin to the robust Poppins Black, each variant adds a unique touch to textual content
xxxxxxxxxx
<html>
<head>
<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=Poppins: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">
</head>
<style>
body {
font-family: 'Poppins', sans-serif;
font-size: 22px;
}
</style>
<body>
<h3>Poppins Font CDN</h3>
<p style="font-weight: 100;">Poppins Thin 100</P>
<p style="font-style: italic;font-weight: 100;">Poppins Thin 100 Italic</P>
<p style="font-weight: 200;">Poppins ExtraLight 200</P>
<p style="font-weight: 200;font-style: italic;">Poppins ExtraLight 200 Italic</P>
<p style="font-weight: 300;">Poppins Light 300</P>
<p style="font-weight: 300;font-style: italic;">Poppins Light 300 Italic</P>
<p style="font-weight: 400;">Poppins Regular 400</P>
<p style="font-weight: 400;font-style: italic;">Poppins Regular 400 Italic</P>
<p style="font-weight: 500;">Poppins Medium 500</P>
<p style="font-weight: 500; font-style: italic;">Poppins Medium 500 Italic</P>
<p style="font-weight: 600;">Poppins SemiBold 600</P>
<p style="font-weight: 600; font-style: italic;">Poppins SemiBold 600 Italic</P>
<p style="font-weight: 700;">Poppins Bold 700</P>
<p style="font-weight: 700; font-style: italic;">Poppins Bold 700 Italic</P>
<p style="font-weight: 800;">Poppins ExtraBold 800</P>
<p style="font-weight: 800; font-style: italic;">Poppins ExtraBold 800 Italic</P>
<p style="font-weight: 900;">Poppins Black 900</P>
<p style="font-weight: 900; font-style: italic;">Poppins Black 900 Italic</P>
</body>
</html>