font/woff
WOFF font
Font
.woff
MIME Type
Media Type
font/woff
File Extension
.woff
Usage Examples
HTTP Response Header
Content-Type: font/woff
HTML Link Tag
<link rel="stylesheet" type="font/woff" href="style.css">
JavaScript Fetch API
fetch('/api/data', {
headers: {
'Content-Type': 'font/woff'
}
})Express.js (Node.js)
res.setHeader('Content-Type', 'font/woff');
res.send(data);When to Use This MIME Type
Font MIME types ensure web fonts load correctly. Modern browsers require proper MIME types for font files.