Updated README

Added 4 explanations for the minimal tags at the top
This commit is contained in:
Joshua-Hess 2016-05-31 11:34:29 -04:00
parent 75aa8318d6
commit b832c9d7da
1 changed files with 7 additions and 0 deletions

View File

@ -7,9 +7,16 @@ A collection of HTML head elements.
Below are the essential tags for basic, minimalist websites:
```html
<!-- Use most common unicode format -->
<meta charset="utf-8">
<!-- Displays in highest standard accepted by internet explorer -->
<meta http-equiv="x-ua-compatible" content="ie=edge">
<!-- Makes the screen fit on mobile devices -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Document Title -->
<title>Page Title</title>
```