Skip to content

Commit

Permalink
feat: add currency conversion instructions and API credit
Browse files Browse the repository at this point in the history
- Added a paragraph explaining how users can convert values between different currencies by selecting the source and destination currencies and entering a value to get the conversion result.

- Included a note about the use of awesomeAPI for fetching the exchange rates, giving credit to the external service used in the project.
  • Loading branch information
MatheusCampagnolo authored May 17, 2024
1 parent 0884b98 commit cdae040
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,11 @@
</head>
<body>
<h1>Currency Converter</h1>
<p>You can convert values between different currencies. Just select the source and destination currencies, enter a value, and get the conversion result.</p>
<p>This project uses the awesomeAPI to get the exchange rate</p>

<br>

<label for="source-currency">Choose the source currency:</label>
<select id="source-currency">
<!-- Currency options will be added here by JavaScript -->
Expand All @@ -26,4 +31,4 @@ <h1>Currency Converter</h1>
<p id="result"></p>

<script src="scripts/converter.js"></script>
</body>
</body>

0 comments on commit cdae040

Please sign in to comment.