keecode logokeecode
Home / MIME Types / font/otf

font/otf

OpenType font

Font
.otf

MIME Type

Media Type

font/otf

File Extension

.otf

Usage Examples

HTTP Response Header

Content-Type: font/otf

HTML Link Tag

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

JavaScript Fetch API

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

Express.js (Node.js)

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