https://github.com/adityavijay21/palindrome-checker
just a trash project !
https://github.com/adityavijay21/palindrome-checker
freecodecamp freecodecamp-challenge freecodecamp-project palindrome-checker
Last synced: 2 months ago
JSON representation
just a trash project !
- Host: GitHub
- URL: https://github.com/adityavijay21/palindrome-checker
- Owner: adityavijay21
- Created: 2024-03-02T04:52:44.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-03-02T05:00:33.000Z (about 1 year ago)
- Last Synced: 2025-01-25T14:44:05.937Z (4 months ago)
- Topics: freecodecamp, freecodecamp-challenge, freecodecamp-project, palindrome-checker
- Language: JavaScript
- Homepage: https://codepen.io/kiriotheo/pen/eYomzwR
- Size: 3.91 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Palindrome Checker
## Description
This is a simple web application that checks if a given input (word or phrase) is a palindrome.## How to Use
1. Open the project using the CodePen link provided in the repository description.
2. You will see an input field and a button on the webpage.
3. Enter a word or phrase into the input field.
4. Click the "Check" button.
5. The result will be displayed below the button.## Code Structure
- `index.html`: This file contains the HTML structure of the application. It includes a text input field for the user to enter a word or phrase, a button to check if the input is a palindrome, and a div to display the result.
- `styles.css`: This file contains the CSS styles for the application. It includes styles for the body, container, input field, button, and result div.
- `script.js`: This file contains the JavaScript logic to check if the input is a palindrome.