Last active
February 15, 2023 05:35
-
-
Save ARHEIO/fcc566876a97167906ac20dd02538688 to your computer and use it in GitHub Desktop.
Deno can import this
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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