class Note extends HTMLElement { connectedCallback() { // Get the note content const content = this.innerHTML; // Get optional type attribute for different note styles const type = this.getAttribute('type') || 'default'; // Get optional title attribute const title = this.getAttribute('title'); // Build the note HTML let noteHTML = '