Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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/

Screenshot 2023-07-13 at 12 42 47 PM

Screenshot 2023-07-13 at 12 43 15 PM

## 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.