References

Collection of references for web development.

HTML xmlns attribute

Description

Specifies the xml namespace for the document.

Values

Value
http://www.w3.org/1999/xhtml

Example

<!DOCTYPE html>
<html>
	<head xmlns="https://www.w3.org/1999/xhtml">
		<title>Page Title</title>
	</head>
	<body>
		Page Content
	</body>
</html>