FontBinary
font/woff
WOFF
Reference for font/woff, the Web Open Font Format providing compressed fonts optimized for web delivery.
MIME Type Detector
Drop a file to detect its MIME type — no upload, runs in your browser
📄
Drop any file here or click to choose
Expected extensions: .woff
HTTP Content-Type Header
HTTP Header
Content-Type: font/woffAssociated File Extensions
.woff
Quick Facts
| MIME Type | font/woff |
| Category | Font |
| Type | Binary |
| Extensions | .woff |
Common Usage
WOFF wraps TrueType or OpenType fonts with compression and metadata for efficient web delivery. It was the first font format designed specifically for the web and is supported by all modern browsers.
WOFF typically achieves 40% compression over raw TTF/OTF.
Code Examples
HTML
<!-- Link or embed with explicit type -->
<link rel="stylesheet" href="file.woff" type="font/woff">
<!-- Or for script/media elements -->
<script type="font/woff" src="file.woff"></script>Node.js
// Express.js
app.get('/file', (req, res) => {
res.type('font/woff');
res.send(data);
});
// Node.js http
res.writeHead(200, { 'Content-Type': 'font/woff' });nginx
# nginx.conf — add to types block or use default
types {
font/woff woff;
}
# Or set for a specific location
location /api/ {
default_type font/woff;
}Related MIME Types
More Font MIME Types
Other font types in the Font family
Related Tools
Explore More MIME Types
Browse our complete reference of 185 MIME types with usage examples, HTTP headers, and code snippets.