noun

Url

673 of 733
Other / Shape

incline - A slope or slant, especially a surface that is changed from a horizontal position

The incline of the mountain made the climb incredibly challenging.

// 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(); }); }