References

Collection of references for web development.

HTML content attribute

Description

Specifies the content for the element.

Values

Value
string

Example

<!DOCTYPE html>
<html>
	<head>
		<meta name="description" content="Description about your websites document">
		<title>Example document using meta tags</title>
	</head>
	<body>
		<p>Page content...</p>
	</body>
</html>