text/html
HTML document
Text
.html
MIME Type
Media Type
text/html
File Extension
.html
Usage Examples
HTTP Response Header
Content-Type: text/html
HTML Link Tag
<link rel="stylesheet" type="text/html" href="style.css">
JavaScript Fetch API
fetch('/api/data', {
headers: {
'Content-Type': 'text/html'
}
})Express.js (Node.js)
res.setHeader('Content-Type', 'text/html');
res.send(data);When to Use This MIME Type
Text MIME types are used for human-readable content. Always use the correct MIME type to ensure proper rendering and character encoding.