meta content Attribute - HTML CSS HTML Tag

HTML CSS examples for HTML Tag:meta

Description

The content attribute gives the value associated with the http-equiv or name attribute.

Attribute Values

Value Description
text The content of the meta information

The following code shows how to Describe metadata within an HTML document:

Demo Code

ResultView the demo in separate window

<!DOCTYPE html>
<html>
<head>
  <meta name="description" content="Free Web tutorials">
  <meta name="keywords" content="HTML,CSS,XML,JavaScript">
</head><!--from  ww  w.  ja v a 2 s .  c  om-->
<body>

<p>The meta elements of this document describe the document and its keywords.</p>

</body>
</html>

Related Tutorials