Add title, base, style, and script elements

This commit is contained in:
Josh Buchea 2016-04-21 11:58:43 -07:00
parent 82a409b512
commit cbc378a3cd
1 changed files with 11 additions and 0 deletions

View File

@ -2,6 +2,17 @@
A collection of HTML head elements.
## Elements
``` html
<title>Page Title</title>
<base href="https://example.com/page.html">
<style>
body { color: red; }
</style>
<script src="script.js"></script>
```
## Meta Element
``` html