Contact Us

Request an appointment

Thank you! Your submission has been received!
Oops! Something went wrong while submitting the form.
// when the DOM is ready document.addEventListener("DOMContentLoaded", function() { // get the the span element const yrSpan = document.querySelector('.year-span'); // get the current year const currentYr = new Date().getFullYear(); // set the year span element's text to the current year yrSpan.textContent = currentYr; });