keecode logokeecode
Home / MIME Types / image/x-icon

image/x-icon

Icon file

Image
.ico

MIME Type

Media Type

image/x-icon

File Extension

.ico

Usage Examples

HTTP Response Header

Content-Type: image/x-icon

HTML Link Tag

<link rel="stylesheet" type="image/x-icon" href="style.css">

JavaScript Fetch API

fetch('/api/data', {
  headers: {
    'Content-Type': 'image/x-icon'
  }
})

Express.js (Node.js)

res.setHeader('Content-Type', 'image/x-icon');
res.send(data);