Skip to content

Instantly share code, notes, and snippets.

@ARHEIO
Last active February 15, 2023 05:35
Show Gist options
  • Save ARHEIO/fcc566876a97167906ac20dd02538688 to your computer and use it in GitHub Desktop.
Save ARHEIO/fcc566876a97167906ac20dd02538688 to your computer and use it in GitHub Desktop.
Deno can import this
class MyTitle extends HTMLElement {
connectedCallback() {
this.innerHTML = `
<style>
h1 {
font-size: 2.5rem;
color: hotpink;
font-family: monospace;
text-align: center;
text-decoration: pink solid underline;
text-decoration-skip: ink;
}
</style>
<h1>Hello Alligator!</h1>
`;
}
}
customElements.define('my-title', MyTitle);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment