Meta questions

Not just helpful: the W3C Validator will show an error if it’s omitted.

1 Like

So that’s 3 supposedly “good” meta tags, one of which isn’t used by search engines, and one essential meta tag that’s been omitted. :nono:

So it sounds like I can safely use the following code-snippet on all of my pages and make various browsers (and search engines) happy, correct?

<!DOCTYPE html>
<html lang="en">
<head>
	<meta charset="utf-8">
	<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1">
    <meta name="keywords" content="single,pertinent,words,here">
    <meta name="description" content="page description here">
	<title>Page Title</title>
</head>

This topic was automatically closed 91 days after the last reply. New replies are no longer allowed.