Skip to content

Froshboss/Palindrome-Checker

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 

Repository files navigation

PALINDROME CHECKER

A beautiful and interactive Palindrome Checker that allows users to input any sentence and check if it reads the same forwards and backwards ignoring punctuation, spaces, and case. Built using HTML, CSS, and JavaScript with a responsive and user-friendly design.

FEATURES

Clean and modern interface with smooth animation. Real-time result clearing on user input. Input cleaning to ignore spaces, punctuation, and case. Accurate palindrome detection with instant feedback. Fully responsive design that works on mobile and desktop.

PREVIEW

preview

TECHNOLOGIES USED

HTML5 – Layout and form structure. CSS3 – Responsive styling with animations and gradient backgrounds. JavaScript (Vanilla) – Palindrome logic and DOM interaction.

INPUT SANITIZATION

The checker: Converts all characters to lowercase. Removes all non-alphanumeric characters.

  function cleanText(text) {
  return text.toLowerCase().replace(/[^a-z0-9]/g, '');
} 

View the site

About

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published