keecode logokeecode
Home / MIME Types / font/woff

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);