// Define the target keyword var targetKeyword = "handyman services"; // Get the page title element var titleElement = document.querySelector("title"); // Update the page title with the target keyword titleElement.innerHTML = "Handyman Services | " + titleElement.innerHTML; // Get all instances of the target keyword on the page var targetKeywordElements = document.querySelectorAll("*:contains(" + targetKeyword + ")"); // Add a class to all instances of the target keyword for styling purposes targetKeywordElements.forEach(function(element) { element.classList.add("target-keyword"); }); // Add meta description with target keyword to page var metaDescriptionElement = document.querySelector('meta[name="description"]'); metaDescriptionElement.setAttribute("content", "Looking for reliable handyman services? Our team of experts can help you with all your home improvement needs. Contact us today!"); // Update page URL with target keyword var currentUrl = window.location.href; var newUrl = currentUrl.replace(/\/$/, "") + "-handyman-services"; history.pushState({}, "", newUrl);