HTML Code Standards

From PM Wiki
Revision as of 20:23, 27 October 2022 by Aaron (talk | contribs) (Created page with "= DOCTYPE = Utilize the following DOCTYPE for all HTML documents: <pre> <!DOCTYPE html> </pre> = Required Meta Tags = The following meta tags are required for all HTML documents: <pre> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> </pre>")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

DOCTYPE

Utilize the following DOCTYPE for all HTML documents:

<!DOCTYPE html>

Required Meta Tags

The following meta tags are required for all HTML documents:

<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">