References

Collection of references for web development.

HTML charset attribute

Description

Specifies the character encoding used for the document.

Values

Value
character_encoding

Example

<!DOCTYPE html>
<html>
	<head>
		<meta charset="utf-8">
		<title>Example document using meta tags</title>
	</head>
	<body>
		<p>Page content...</p>
	</body>
</html>