Skip to content
This repository has been archived by the owner on Jan 8, 2025. It is now read-only.

Latest commit

 

History

History
26 lines (18 loc) · 1.43 KB

html.md

File metadata and controls

26 lines (18 loc) · 1.43 KB

HTML

You should be able to create a web page with a good understanding and use of available HTML elements. If you already know HTML reasonably well, review the list of elements and ensure you know how to use most of them.

If you need to learn HTML from scratch, refer to these resources:

Advanced topics

HTML in strings

  1. Don't do it
  2. Seriously, it's a very bad idea
  3. If you have a very compelling reason to do it:
    1. Compose the HTML in your editor, pay attention to linting messages and ensure it's valid HTML
      • Invalid HTML can break the build process in confusing ways
    2. Paste your HTML in Code Beautify or HTML Minifier and click the "Minify" button
    3. Copy/paste the result into your JavaScript string
    4. Validate the final built page
  4. If you are updating HTML, you can paste it in Code Beautify and click the "Beautify" button, copy/paste the results to your editor, make changes, then bring it back and minify it

Favicons