Shorten name of meta & link sections

This commit is contained in:
Josh Buchea 2016-06-03 16:07:21 -07:00
parent c9fe079228
commit b46b20fc22
1 changed files with 8 additions and 8 deletions

View File

@ -6,10 +6,10 @@ A list of everything that could go in the `<head>` of your document
- [Recommended Minimum](#recommended-minimum) - [Recommended Minimum](#recommended-minimum)
- [Elements](#elements) - [Elements](#elements)
- [Meta Elements](#meta-elements) - [Meta](#meta)
- [Meta Elements: Not Recommended](#meta-elements-not-recommended) - [Meta: Not Recommended](#meta-not-recommended)
- [Link Elements](#link-elements) - [Link](#link)
- [Link Elements: Not Recommended](#link-elements-not-recommended) - [Link: Not Recommended](#link-not-recommended)
- [Favicons](#favicons) - [Favicons](#favicons)
- [Social](#social) - [Social](#social)
- [Facebook / Open Graph](#facebook--open-graph) - [Facebook / Open Graph](#facebook--open-graph)
@ -67,7 +67,7 @@ Below are the essential tags for basic, minimalist websites:
<script src="script.js"></script> <script src="script.js"></script>
``` ```
## Meta Elements ## Meta
``` html ``` html
<meta charset="utf-8"> <meta charset="utf-8">
@ -152,7 +152,7 @@ Below are the essential tags for basic, minimalist websites:
- [ICBM on Wikipedia](https://en.wikipedia.org/wiki/ICBM_address#Modern_use) - [ICBM on Wikipedia](https://en.wikipedia.org/wiki/ICBM_address#Modern_use)
- [Geotagging on Wikipedia](https://en.wikipedia.org/wiki/Geotagging#HTML_pages) - [Geotagging on Wikipedia](https://en.wikipedia.org/wiki/Geotagging#HTML_pages)
### Meta Elements: Not Recommended ### Meta: Not Recommended
Below are the meta attributes which are not recommended for use: Below are the meta attributes which are not recommended for use:
```html ```html
@ -186,7 +186,7 @@ Below are the meta attributes which are not recommended for use:
<meta http-equiv="Cache-Control" content="no-cache"> <meta http-equiv="Cache-Control" content="no-cache">
``` ```
## Link Elements ## Link
``` html ``` html
<link rel="copyright" href="copyright.html"> <link rel="copyright" href="copyright.html">
@ -227,7 +227,7 @@ Below are the meta attributes which are not recommended for use:
<!-- More info: https://css-tricks.com/prefetching-preloading-prebrowsing/ --> <!-- More info: https://css-tricks.com/prefetching-preloading-prebrowsing/ -->
``` ```
### Link Elements: Not Recommended ### Link: Not Recommended
Below are the link relations which are not recommended for use: Below are the link relations which are not recommended for use:
```html ```html