Search code examples
cssmetadatameta

Meta data is visible on site


I have just tried to add some <meta> data to my site within the <meta> tag, however it is for some reason visible on the web page.

Can I hide it with CSS?

<head>
    <title>Lorem Ipsum</title>
    <meta>Lorem Ipsum is a Lorem Ipsum. Bla Bla.</meta>
    <link rel="stylesheet" type="text/css" href="style.css">
</head>

Solution

  • You are using the meta tag incorrectly. If you are trying to add a meta description, you would use:

    <meta name="description" content="Lorem ispum...">