html: charset

Avoid warning:
The character encoding of the HTML document was not declared.
The document will render with garbled text in some browser configurations
if the document contains characters from outside the US-ASCII range.
The character encoding of the page must be declared in the document
or in the transfer protocol.
This commit is contained in:
Costa Shulyupin 2020-04-15 11:08:40 +03:00 committed by Mathieu Duponchelle
parent 8c4345da7d
commit 56a03add78

View file

@ -11,6 +11,7 @@
-->
<html>
<head>
<meta charset="utf-8"/>
<style>
.error { color: red; }
</style>