Uncial Antiqua
About Uncial Antiqua
- Source
- Google Fonts ↗
- Classification
- display
- Weights
- 400
- Features
- Standard
Free to use, modify, and distribute. Can be used commercially without attribution.
What's allowed?
- ✓ Client work
- ✓ SaaS / Web apps
- ✓ YouTube / Video
- ✓ Sell products
- ✓ Print materials
Note: Derivative fonts must use the same license.
Full license guide →Uncial Antiqua is a display typeface inspired by the Uncial script — the rounded, majuscule letterforms used in European manuscripts from roughly the 4th to 8th centuries. Designed by Brian J. Bonislawsky for Google Fonts, the typeface connects to the blackletter tradition through its medieval manuscript roots, representing the calligraphic style that preceded and influenced the development of gothic scripts.
History and Design
The Uncial script occupies a pivotal position in the history of European lettering. Developing from Roman majuscule writing, Uncial became the prestige book hand of early medieval Europe, used for manuscripts including the Book of Kells and the Lindisfarne Gospels. As writing practices evolved, Uncial gave way to the Carolingian minuscule, which itself evolved into the gothic scripts — blackletter — of the later medieval period. Uncial Antiqua captures this pre-blackletter tradition in a digital typeface.
The letterforms feature the characteristic rounded construction of Uncial, with broad strokes and distinctive letter shapes that differ markedly from both Roman capitals and lowercase forms. Letters like 'a', 'd', 'e', and 'm' show their Uncial origins through forms that are neither uppercase nor lowercase in the modern sense. The overall texture is round, heavy, and rhythmic — sharing the manuscript heritage of blackletter while predating its angular fracturing.
Best For
- Celtic and early medieval themed creative projects
- Religious and liturgical publications and materials
- Historical and educational content about medieval manuscripts
- Fantasy and role-playing game typography
- Heritage branding emphasizing ancient and scholarly traditions
Tips
Uncial Antiqua works best at display sizes where its distinctive letterforms are clearly visible. The single weight provides a solid foundation for headlines and decorative text. Because Uncial letterforms are less familiar to modern readers than either Roman or blackletter, use the typeface for short display text rather than extended reading. Pair with a traditional serif for body text to maintain the historical aesthetic. The typeface's connection to early Christian manuscripts makes it particularly effective for religious and cultural heritage contexts.
Is Uncial Antiqua on Google Fonts?
Yes, Uncial Antiqua is available for free on Google Fonts. Get Uncial Antiqua on Google Fonts ↗
Alternative For (3)
Uncial Antiqua is a free alternative to the following premium fonts:
Historical script sharing the medieval tradition
Compare Uncial Antiqua
See how Uncial Antiqua compares to other fonts side by side.
Font Pairings
Fonts that pair well with Uncial Antiqua based on contrast and complementary design characteristics.
Performance
Key metrics for evaluating Uncial Antiqua in production.
Font Metrics
Fallback CSS Overrides
Apply these overrides to Arial to minimize layout shift when loading Uncial Antiqua.
@font-face {
font-family: 'Uncial Antiqua Fallback';
src: local('Arial');
ascent-override: 98.58%;
descent-override: 33.01%;
line-gap-override: 0%;
size-adjust: 101.6%;
} How to Use Uncial Antiqua
Copy these code snippets to quickly add Uncial Antiqua to your project.
CSS code for Uncial Antiqua
@import url('https://fonts.googleapis.com/css2?family=Uncial+Antiqua:wght@400&display=swap'); HTML code for Uncial Antiqua
<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=Uncial+Antiqua:wght@400&display=swap" rel="stylesheet"> Tailwind code for Uncial Antiqua
// tailwind.config.js
module.exports = {
theme: {
extend: {
fontFamily: {
'uncial-antiqua': ['"Uncial Antiqua"', 'sans-serif'],
},
},
},
}
// Usage in HTML:
// <p class="font-uncial-antiqua">Your text here</p> Next.js code for Uncial Antiqua
// Using next/font (Next.js 13+)
import { Uncial_Antiqua } from 'next/font/google';
const uncial_antiqua = Uncial_Antiqua({
subsets: ['latin'],
weight: ['400'],
});
export default function Component() {
return (
<p className={uncial_antiqua.className}>
Your text here
</p>
);
}
// Or using inline styles with Google Fonts link:
// <p style={{ fontFamily: '"Uncial Antiqua"' }}>Your text</p> Expo and React Native code for Uncial Antiqua
// Install: npx expo install @expo-google-fonts/uncial-antiqua expo-font
import { useFonts, Uncial_Antiqua_400Regular } from '@expo-google-fonts/uncial-antiqua';
export default function App() {
const [fontsLoaded] = useFonts({
Uncial_Antiqua_400Regular,
});
if (!fontsLoaded) return null;
return (
<Text style={{ fontFamily: 'Uncial_Antiqua_400Regular' }}>
Your text here
</Text>
);
}