Simply add this custom typeface to your website using one line of CSS β all font files are served from pluflish-font.pages.dev.
Copy this single CSS rule into your stylesheet (or inside a <style> tag).
That's it β your text will instantly use the Pluflish font.
@font-face {
font-family: 'Pluflish';
src: url('https://pluflish-font.pages.dev/pluflish.woff2') format('woff2'),
url('https://pluflish-font.pages.dev/pluglish.woff') format('woff'),
url('https://pluflish-font.pages.dev/pluflish.ttf') format('truetype'),
url('https://pluflish-font.pages.dev/pluflish.otf') format('opentype');
font-display: swap;
}
/* Then use it anywhere */
body {
font-family: 'Pluflish', sans-serif;
}
font-display: swap line ensures your text stays visible while
the font loads β no invisible content.
The code above tells the browser where to find the font files. It tries the formats in order and downloads only the first one it supports. All files are loaded from pluflish-font.pages.dev β no need to host them yourself.
/* ===== EMBED ALL FONT FORMATS ===== */
@font-face {
font-family: 'Pluflish';
/* WOFF2 β best: tiny file, all modern browsers */
src: url('https://pluflish-font.pages.dev/pluflish.woff2') format('woff2'),
/* WOFF β good fallback for slightly older browsers */
url('https://pluflish-font.pages.dev/pluglish.woff') format('woff'),
/* TTF β legacy mobile (old iOS/Android) */
url('https://pluflish-font.pages.dev/pluflish.ttf') format('truetype'),
/* OTF β older Safari, Adobe compatibility */
url('https://pluflish-font.pages.dev/pluflish.otf') format('opentype');
font-weight: normal;
font-style: normal;
font-display: swap;
}
If you still need to support ancient IE versions, use a separate declaration for the
.eot file. It's served from the same domain.
/* For IE6-IE8 ONLY */
@font-face {
font-family: 'Pluflish';
src: url('https://pluflish-font.pages.dev/pluflish.eot');
src: url('https://pluflish-font.pages.dev/pluflish.eot?#iefix') format('embedded-opentype');
font-weight: normal;
font-style: normal;
}
.eot file completely.
| Format | File | Browser Support | Compression | Status |
|---|---|---|---|---|
| WOFF2 | pluflish.woff2 |
Chrome 36+, Firefox 39+, Edge 14+, Safari 12+ | β Best | β Use First |
| WOFF | pluglish.woff |
Chrome 5+, Firefox 3.6+, IE9+, Safari 5.1+ | Good | β Good Fallback |
| TTF | pluflish.ttf |
Nearly universal (old iOS/Android) | None | π‘ Legacy |
| OTF | pluflish.otf |
Older Safari, Adobe software | None | π‘ Niche |
| EOT | pluflish.eot |
IE6βIE8 only | Basic | β Obsolete |
These samples show the Pluflish font in action. Because the font files are loaded from pluflish-font.pages.dev, you'll see the real typeface right here.
The quick brown fox jumps over the lazy dog.
Pluflish & Typography
ABCDEFGHIJKLMNOPQRSTUVWXYZ
abcdefghijklmnopqrstuvwxyz
0123456789 Β· !@#$%^&*()
Once the @font-face rule is in place, apply font-family: 'Pluflish'
just like any built-in font.
/* Entire page */
body {
font-family: 'Pluflish', Arial, sans-serif;
}
/* Headings only */
h1, h2, h3 {
font-family: 'Pluflish', Georgia, serif;
font-weight: bold;
}
/* A specific class */
.fancy-text {
font-family: 'Pluflish', sans-serif;
font-size: 2.5rem;
letter-spacing: -0.03em;
}
This is a readyβtoβuse HTML page that already imports Pluflish from the CDN.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My Pluflish Site</title>
<style>
@font-face {
font-family: 'Pluflish';
src: url('https://pluflish-font.pages.dev/pluflish.woff2') format('woff2'),
url('https://pluflish-font.pages.dev/pluglish.woff') format('woff'),
url('https://pluflish-font.pages.dev/pluflish.ttf') format('truetype'),
url('https://pluflish-font.pages.dev/pluflish.otf') format('opentype');
font-display: swap;
}
body {
font-family: 'Pluflish', sans-serif;
}
</style>
</head>
<body>
<h1>Hello, Pluflish!</h1>
<p>This text is displayed in the custom Pluflish font.</p>
</body>
</html>
font-display: swap to avoid blank text while the font loads.<link rel="preload" href="https://pluflish-font.pages.dev/pluflish.woff2" as="font" type="font/woff2" crossorigin>
Please add a visible link to pluflish-font.pages.dev so others can discover the font. You can use this badge or a simple text link:
<!-- Badge style link -->
<a href="https://pluflish-font.pages.dev" target="_blank" rel="noopener">
π€ Font by Pluflish
</a>