4 <title>PatternFly Elements CDN example</title>
19 <script type="importmap">
22 "@patternfly/": "https://esm.sh/@patternfly/"
27 <script type="module">import "@patternfly/elements/pf-button/pf-button.js"</script>
28 <script type="module">import "@patternfly/elements/pf-card/pf-card.js"</script>
29 <script type="module">import "@patternfly/elements/pf-icon/pf-icon.js"</script>
33 <h1>PatternFly Elements CDN example</h1>
37 <h3 slot="header">PF Card</h3>
38 <p>Some info here.</p>
39 <p slot="footer">Footer here...</p>
42 <h3 slot="header">Another Card</h2>
47 <pf-icon icon="rh-cloud" size="lg"></pf-icon>
49 <pf-button id="do_something">Do something!</pf-button>
52 const button_do = document.getElementById("do_something");
53 button_do.addEventListener("click", () => alert("clicked"));