Go to file
Simon 8da32f8afd fix: Avoid http-equiv <meta> tags
HTTP headers are more efficient than the http-equiv meta tags.
The <meta http-equiv=/> tags

The http-equiv meta tags allow to communicate to the web browser information equivalent to the ones of HTTP headers. For example, the meta <meta http-equiv=content-type/> will have the same consequences than the HTTP Content-Type header.

Two points don’t stimulate the use of http-equiv meta tags:

    Going through the meta requires to interpret the beginning of the HTML page, which is slower than going through the HTTP headers in terms of performance
    If the HTTP header is already present, the meta is ignored

In which cases are the <meta http-equiv=/> useful?

Only one case can justify the presence of these meta tags: if you don’t have access to the configuration of your server, and that is to say to the HTTP headers.

However, we advice you to use a configurable server so that you can establish the most efficient site possible.

This page contains 1 http-equiv meta tag. If possible, you should replace it:

    x-ua-compatible
2020-03-11 16:53:07 +01:00
assets/styles first version 2020-02-26 23:44:15 +01:00
layouts fix: Avoid http-equiv <meta> tags 2020-03-11 16:53:07 +01:00
scripts docs: Add link to original library 2020-02-27 11:39:20 +01:00
.gitignore Add typo script 2020-02-27 11:19:02 +01:00
.nvmrc Add nvm config 2020-02-27 11:25:17 +01:00
LICENSE first commit 2020-02-26 23:13:24 +01:00
README.md Add readme 2020-03-09 15:08:54 +01:00
package-lock.json Add typo script 2020-02-27 11:19:02 +01:00
package.json Add typo script 2020-02-27 11:19:02 +01:00
theme.toml first commit 2020-02-26 23:13:24 +01:00