I have been working on a fun web project where users can click a button to add sticky notes to a page. Here is the HTML code for a single sticky note:
<div class="sticky_note">
<div class="title">
<input type="text" name="title" placeholder="My Title"><span class="close">x</span>
</div>
<div class="content">
<textarea name="note" placeholder="Type here..."></textarea>
</div>
</div>
I am facing some challenges in adding multiple sticky notes whenever the user clicks the add button. Any advice or suggestions would be greatly appreciated. Thank you!