This commit is contained in:
Corey Olson 2016-05-25 13:22:02 +00:00
commit 45349ed8ef
1 changed files with 10 additions and 0 deletions

View File

@ -2,6 +2,16 @@
A collection of HTML head elements.
## Recommended Minimum
Below are the essential tags for basic, minimalist websites:
```
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Page Title</title>
```
## Elements
``` html