Since you're using HTML5, you may replace
with
. You may use
instead, but be sure to save the file using UTF-8 encoding (not as Unicode) if it contains characters beyond the 8-bit range.
Regardless of the OS they run under, all modern web browsers render windows-1252 characters properly, as it's required by HTML5. UTF-8 is not a character set at all, but rather a method of encoding both single-byte characters and multi-byte Unicode. Note that the first 256 Unicode characters is actually the windows-1252 character set.
HTML5 does not require UTF-8 encoding, and about one out of five web pages do not use it. HTML5 requires only that the declared encoding be ASCII-compatible and at least 8 bits. The warning that "Documents should use UTF-8" is simply heavy-handed, since there's no compelling reason to declare UTF-8 encoding for plain ASCII text.
Chris said, "if you use characters like ä or é, people might see questionmarks instead." As is happens, ä and é are part of windows-1252 (codes 228 and 233) and would be properly displayed.
(I note that you closed the
. That method is required in XHTML and XML, not HTML. W3C provides this example in HTML5
See the longer code example under https://www.w3.org/TR/html5/document-metadata.html#the-head-element
)