ApplicationBinary
application/vnd.ms-powerpoint
Microsoft PowerPoint (Legacy)
Reference for application/vnd.ms-powerpoint, the MIME type for legacy PowerPoint .ppt presentation files.
MIME Type Detector
Drop a file to detect its MIME type — no upload, runs in your browser
📄
Drop any file here or click to choose
Expected extensions: .ppt
HTTP Content-Type Header
HTTP Header
Content-Type: application/vnd.ms-powerpointAssociated File Extensions
.ppt
Quick Facts
| MIME Type | application/vnd.ms-powerpoint |
| Category | Application |
| Type | Binary |
| Extensions | .ppt |
Common Usage
The legacy .ppt format was the default format for Microsoft PowerPoint 97-2003. It is encountered in archived presentations, older training materials, and enterprise systems that have not migrated to the newer .pptx format.
Code Examples
HTML
<!-- Link or embed with explicit type -->
<link rel="stylesheet" href="file.ppt" type="application/vnd.ms-powerpoint">
<!-- Or for script/media elements -->
<script type="application/vnd.ms-powerpoint" src="file.ppt"></script>Node.js
// Express.js
app.get('/file', (req, res) => {
res.type('application/vnd.ms-powerpoint');
res.send(data);
});
// Node.js http
res.writeHead(200, { 'Content-Type': 'application/vnd.ms-powerpoint' });nginx
# nginx.conf — add to types block or use default
types {
application/vnd.ms-powerpoint ppt;
}
# Or set for a specific location
location /api/ {
default_type application/vnd.ms-powerpoint;
}Related MIME Types
More Application MIME Types
Other application types in the Application family
Related Tools
Explore More MIME Types
Browse our complete reference of 185 MIME types with usage examples, HTTP headers, and code snippets.