HTML CSS examples for HTML Tag:meta
The content attribute gives the value associated with the http-equiv or name attribute.
Value | Description |
---|---|
text | The content of the meta information |
The following code shows how to Describe metadata within an HTML document:
<!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>