Recommended minimal tags

This commit is contained in:
Corey Olson 2016-05-23 23:20:47 -05:00
parent f477b10f3e
commit a85f5adc02
1 changed files with 11 additions and 0 deletions

View File

@ -2,6 +2,17 @@
A collection of HTML head elements.
## Recommended Minimum
The essential tags for basic, minimalist websites.
```
<title>Page Title</title>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="canonical" href="https://example.com/page.html">
```
## Elements
``` html