References

Collection of references for web development.

HTML http-equiv attribute

Description

Specifies the HTTP header for the content attribute.

Values

Value
content-type,default-style,refresh

Example

<!DOCTYPE html>
<html>
	<head>
		<meta http-equiv="content-type" content="text/html; charset=UTF-8">
		<title>Example document using meta tags</title>
	</head>
	<body>
		<p>Page content...</p>
	</body>
</html>

Example #2

<!DOCTYPE html>
<html>
	<head>
		<meta http-equiv="refresh" content="5">
		<title>Example document using meta tags</title>
	</head>
	<body>
		<p>Page content...</p>
	</body>
</html>