DEV Community

avery
avery

Posted on • Edited on

4. Multi-Page Websites

BootCamp by Dr.angela

1. Computer File Path

  • Absolute(full path from the root directory)
  • Relative(path based on the location of the current file)
    • ../: Parent directory(one level up from the current folder)
    • ./ : Current directory(the same folder as the current file)

2. The HTML Boilerplate

  • <!DOCTYPE html> : html5 ver
  • <html lang = "en"> ~ </html> : screen reader
  • <head> ~ </head> : not to be seen
    • <meta charset = "UTF-8"> : character encoding
    • <title> ~ </title>
  • <body> ~ </body> : contents

3. How to Host Your Website for Free with GitHub

  • Web Hosting(Web Server) (vs Local development)
  • Upload the whole root folder for projects (for collaboration and code management), but only its contents for GitHub Pages (for proper deployment), so that index.html is at the repository root.

Top comments (0)