Skip to main content

HTMLMarkup Lang to express Web Page struct/content

Source: developer.mozilla.org/en

aka HTML, HyperText-Markup-Language

image

Flow Content

any HTMLElement to go inside <body\> via Normal Flow

HTML Entity

string to display reserved invisible chars in HTML

Sources: Entity - MDN Web Docs Glossary: Definitions of Web-related terms | MDN HTML Standard

Metadata Content

HTMLElement to mod presentation/behavior of Document & provides additional info

References

  1. HTTPNetwork Protocol to transmit/access data over web i.e. HTML

  2. ElectronJS Framework to build desktop Apps with JS, HTML & CSS, embed in Chromium & Node.js

  3. CSSStylesheet Language to express style & layout of (HTML) via Style Rule

  4. Web Platform ↔ Collection of Open Standard Technologies incl HTML, CSS, ECMAScript & Web Assembly, mainly for Browser Runtime

  5. <pre>Element to display preformatted text (as literally written in HTML Source Code)

  6. MDN Web DocsFOSS wiki docs for HTML, CSS, JS & Web API

  7. Layout engineBrowser engine to interpret HTML, CSS & JS, & render pixels to screen

  8. HTML Entitystring to display reserved invisible chars in HTML

  9. <body>Root Sectioning Element to hold Document Body of HTML Document

  10. /public/index.html ↔ root HTML Web Page to serve App Component, entry point for Browser

  11. DOM Tree ↔ Tree-like structure of Node, autogen by HTML document

  12. React.Fragment ↔ empty React placeholder container w/o "physical" Element add to final HTML

  13. jQueryLib to simplify DOM API manipulation via $ wrapper around HTML

  14. JSXSyntactic Sugar to mix HTML inside JS, later Transpile to React.createElement()

  15. SSG ↔ (process) to Pre-render HTML Static Content at build time for Thin Client

  16. <iframe> ↔ Inline Frame Inline Element to embed another HTML page into Web Page

  17. srcDocAttribute to load HTML static markup as String into <iframe\>

  18. Data URIScheme to encode data as string & embed into HTML

  19. <html>HTML Document Root Element to contain all HTML

  20. Pre-render ↔ (feat) to render HTML in advance for perf & SEO

  21. /src/main.tsxroot HTML for Vite TS project

  22. Sandbox ↔ Isolated environment/container for Runtime Environment/HTML/etc

  23. HTMLElementInterface Object to rep Element in HTML

  24. Block Element ↔ 📦 Element to stack as blocks (default) & fill width of HTML

  25. &nbsp;HTML Entity to escape non-breaking whitespace in HTML - to preserve whitespace as content, prevent collapse