keecode logokeecode
Home / MIME Types / font/woff2

font/woff2

WOFF2 font

Font
.woff2

MIME Type

Media Type

font/woff2

File Extension

.woff2

Usage Examples

HTTP Response Header

Content-Type: font/woff2

HTML Link Tag

<link rel="stylesheet" type="font/woff2" href="style.css">

JavaScript Fetch API

fetch('/api/data', {
  headers: {
    'Content-Type': 'font/woff2'
  }
})

Express.js (Node.js)

res.setHeader('Content-Type', 'font/woff2');
res.send(data);