Footers

1. Template 1

Copyright © 2025 Client Business Name

Powered by Paptido Inc.

HTML Code - Go to footers-template-1 & copy the code starting from <footer>.

CSS Code - Copy the entire file. Remove the #footers-template-1 prefix from all selectors.

JS Code - Copy the following code & paste it in the footer.js file of the project that you are building.

const clientYear = document.querySelector('.clientYear').textContent;
const currentYearContainer = document.querySelector('.currentYear');

const torontoTime = new Date().toLocaleString("en-US", {timeZone: "America/Toronto"});
const currentYear = new Date(torontoTime).getFullYear();

if (clientYear != currentYear){
    currentYearContainer.textContent = `-${currentYear}`;
}

2. Template 2

freshcuts website logo freshcuts website logo

Address

77 Violet Drive, Hamilton, ON, L8E 3J2

Services

  • Haircuts
  • Hairstyling
  • Waxing
  • Colouring
  • Highlights
  • Perm

Business Hours

  • Monday – Closed
  • Tuesday : 9AM – 6PM
  • Wednesday : 9AM – 6PM
  • Thursday : 9AM – 6PM
  • Friday : 9AM – 6PM
  • Saturday : 9AM – 6PM
  • Sunday – Closed

HTML Code - Go to footers-template-2 & copy the code starting from <footer>.

CSS Code - Copy the entire file. Remove the #footers-template-2 prefix from all selectors.

JS Code - Copy the following code & paste it in the footer.js file of the project that you are building.

const clientYear = document.querySelector('.clientYear').textContent;
const currentYearContainer = document.querySelector('.currentYear');

const torontoTime = new Date().toLocaleString("en-US", {timeZone: "America/Toronto"});
const currentYear = new Date(torontoTime).getFullYear();

if (clientYear != currentYear){
    currentYearContainer.textContent = `-${currentYear}`;
}