March 2018
Intermediate to advanced
592 pages
13h 44m
English
For now though, in our index.html file, we'll provide DOCTYPE so the browser knows which version of HTML we want to use. We tell it to use HTML which refers to HTML5. Next up, we'll open and close our html tag:
<!DOCTYPE html><html></html>
This tag is going to let us provide the head and body tags, which are exactly what we'll need to get things working:
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> </head> </html>