Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/shuddha2021/fruit-finder-search-engine
Discover Your Favorite Fruits: A Simple and Intuitive Search Experience
https://github.com/shuddha2021/fruit-finder-search-engine
css data-filtering frontend html javascript opensource search-engine user-interface web-development
Last synced: 6 days ago
JSON representation
Discover Your Favorite Fruits: A Simple and Intuitive Search Experience
- Host: GitHub
- URL: https://github.com/shuddha2021/fruit-finder-search-engine
- Owner: shuddha2021
- Created: 2023-07-13T17:38:53.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-07-13T17:43:57.000Z (over 1 year ago)
- Last Synced: 2024-11-06T19:50:22.721Z (about 2 months ago)
- Topics: css, data-filtering, frontend, html, javascript, opensource, search-engine, user-interface, web-development
- Language: HTML
- Homepage: https://simple-search-engine-web-page.vercel.app
- Size: 4.88 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Simple Search Engine Web Page
A simple web page that allows the user to search for some fruits using HTML, CSS and JavaScript.
## Live Demo
You can see the live demo of the web page here: https://simple-search-engine-web-page.vercel.app/
## Tech Stacks
- HTML
- CSS
- JavaScript## How it works
- The web page has a search box and a search button where the user can enter their search query.
- The web page also has a list of search results where the matching items are displayed as links with descriptions.
- The web page uses HTML, CSS and JavaScript to create the user interface and perform the search logic.
- The web page uses a sample data array as the source of information, which can be modified or replaced with a real database or API.
- The web page performs a case-insensitive search on the title and description of each item in the data array, and filters out the ones that do not contain the query.
- The web page displays the filtered results as list items, with the title as a link to the URL and the description as a paragraph below it.
- The web page updates the search results whenever the user types in the search box or clicks on the search button.
- The web page shows a message "No results found." if there are no matching items for the query.