Report
Report
Objective:
The Currency Converter is a web tool that allows users to
convert amounts between different currencies. It uses HTML, CSS,
and JavaScript to provide an interactive experience where users
can select the amount and currencies to convert.
Technologies Used:
HTML: Provides structure and form elements.
CSS: Styles the page for a user-friendly interface.
JavaScript: Handles the conversion logic and updates the
result dynamically.
Features:
Amount Input: Enter the amount to convert.
Currency Selection: Choose "From" and "To" currencies.
Convert Button: Triggers conversion.
Result Display: Shows the converted value.
HTML Structure:
The page includes:
A header with the project title.
A form to input the amount and select currencies.
A result area to display the converted amount.
CSS Styling:
The styling ensures a clean, simple design:
Input fields and select menus are aligned.
The "Convert" button has a hover effect.
The layout is responsive for all screen sizes.
JavaScript Functionality:
The convert button triggers the conversion function.
It retrieves the input amount and selected currencies.
The conversion is based on predefined exchange rates and
displays the result.
CONCLUSION:
The Currency Converter is a simple yet powerful tool for
converting currencies. It can be enhanced by integrating real-time
exchange rates from an API, adding more currencies, and
improving error handling for a better user experience.