</form>
                <section id="categorias" class="paleta" style="display: none">
                    <input tytpe="button" name="color" class="Blanco" type="button" onclick = "categoria(1)">
                    <input tytpe="button" name="color" class="Verde" type="button"  onclick="categoria(2)">
                    <input tytpe="button" name="color" class="Rojo" type="button"  onclick="categoria(3)">
                    <input type="hidden" id="categoriaSelect" >
                </section>
                <section class="main-content__newNote___options">
                    <a href="javascript:mostrarPaleta()" id="icon" class="icon-palette"></a>
                    <a href="javascript:insertarNota()" class="hecho">HECHO</a>
                </section>
            </div> 
            
            <div id="notas" class='notas'>
                <?php 
$listaNotas = $notaBLL->selectAll();
foreach ($listaNotas as $objNotas) {
    ?>
                <form onmouseover="habilitarSeleccion(<?php 
    echo $objNotas->getId();
    ?>
)"
                     onmouseout="deshabilitarSeleccion(<?php 
    echo $objNotas->getId();
    ?>
)"
                     id="notaEdit<?php 
    echo $objNotas->getId();
    ?>
" >
                    <article id="notas_contenido<?php