keecode logokeecode
Home / MIME Types / font/ttf

font/ttf

TrueType font

Font
.ttf

MIME Type

Media Type

font/ttf

File Extension

.ttf

Usage Examples

HTTP Response Header

Content-Type: font/ttf

HTML Link Tag

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

JavaScript Fetch API

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

Express.js (Node.js)

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