Created
March 30, 2025 15:55
-
-
Save ivandrofly/ae5c55a040de3750c3b9bfbdb0074f23 to your computer and use it in GitHub Desktop.
MIME TYPE
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Here is a comprehensive list of commonly used MIME (Multipurpose Internet Mail Extensions) types: | |
### Text Types | |
- **text/plain** - Plain text | |
- **text/html** - HTML documents | |
- **text/css** - Cascading Style Sheets | |
- **text/javascript** - JavaScript code | |
- **text/xml** - XML documents | |
- **text/csv** - Comma-separated values (CSV) | |
- **text/markdown** - Markdown files | |
### Application Types | |
- **application/json** - JSON format | |
- **application/xml** - XML document format | |
- **application/pdf** - PDF documents | |
- **application/zip** - ZIP archives | |
- **application/gzip** - GZIP compressed files | |
- **application/x-www-form-urlencoded** - Form data encoded in URL parameters | |
- **application/octet-stream** - Binary data (generic) | |
- **application/vnd.openxmlformats-officedocument.wordprocessingml.document** - MS Word (.docx) | |
- **application/vnd.ms-excel** - MS Excel spreadsheets (.xls) | |
- **application/vnd.openxmlformats-officedocument.spreadsheetml.sheet** - MS Excel (.xlsx) | |
- **application/vnd.ms-powerpoint** - MS PowerPoint (.ppt) | |
- **application/vnd.openxmlformats-officedocument.presentationml.presentation** - MS PowerPoint (.pptx) | |
### Image Types | |
- **image/jpeg** - JPEG images | |
- **image/png** - PNG images | |
- **image/gif** - GIF images | |
- **image/svg+xml** - SVG images | |
- **image/webp** - WebP image format | |
- **image/x-icon** - ICO format icons (favicons) | |
- **image/bmp** - Bitmap images | |
- **image/tiff** - TIFF images | |
### Audio Types | |
- **audio/mpeg** - MP3 audio files | |
- **audio/wav** - WAV audio files | |
- **audio/ogg** - OGG audio files | |
- **audio/webm** - WebM audio files | |
- **audio/aac** - Advanced Audio Coding files | |
### Video Types | |
- **video/mp4** - MP4 video files | |
- **video/mpeg** - MPEG video files | |
- **video/webm** - WebM video files | |
- **video/quicktime** - QuickTime video files (.mov) | |
- **video/x-msvideo** - AVI files | |
- **video/x-ms-wmv** - Windows Media Video (.wmv) | |
### Multipart Types | |
- **multipart/form-data** - Form data for file uploads | |
- **multipart/mixed** - Mixed content types | |
- **multipart/alternative** - Alternative content types (often text/plain & text/html) | |
- **multipart/related** - Related multimedia content, usually combined (embedded images in HTML email) | |
### Font Types | |
- **font/woff** - Web Open Font Format | |
- **font/woff2** - Web Open Font Format version 2 | |
- **font/ttf** - TrueType Font Format | |
- **font/otf** - OpenType font format | |
This represents a common subset of standard MIME types. For a more exhaustive list, you may refer to official resources such as [IANA](https://www.iana.org/assignments/media-types/media-types.xhtml). |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment