Modular Web Components

by Erik Gillespie

HTML

<script
  type="module"
  src="https://raw.githubusercontent.com/egillespie/web-component-intro/main/examples/page-title.mjs"
></script>

<page-title></page-title>

<p>
  I'm a regular paragraph, unaffected by
  <code>&lt;page-title&gt;</code> styles.
</p>

CSS

body {
  background-color: #222;
  color: white;
}