adjective

25 of 60
Good / Smart-Adj

profound - Regarding an idea as being full of deep meaning

Mary loved her philosophy teacher, and the way he expressed profound thoughts in a simple and accessible way

// Auto-focus search input when modal opens var searchModal = document.getElementById('searchModal'); if (searchModal) { searchModal.addEventListener('shown.bs.modal', function () { var inp = searchModal.querySelector('input[name=search]'); if (inp) inp.focus(); }); }