diff --git a/index.html b/index.html index ea02986..aa21f11 100644 --- a/index.html +++ b/index.html @@ -74,7 +74,23 @@ background-color: #fff; box-shadow: 0 2px 4px 0 rgba(0,0,0,.3); } - + #backToTopBtn { + display: none; + position: fixed; + bottom: 20px; + right: 20px; + background-color: #007bff; + color: #fff; + border: none; + border-radius: 5px; + padding: 10px 15px; + cursor: pointer; + font-size: 16px; + } + + #backToTopBtn:hover { + background-color: #0056b3; + } footer { text-align: center; padding: 20px; @@ -98,7 +114,34 @@
The purpose of this project is to create a currency converter that can convert the value of one currency into another based on the current market rates. This project is useful for travelers, businesses, and forex traders who need to exchange currencies or track the changes in exchange rate valuations. This project also demonstrates the concept of object-oriented programming in C++, which is a powerful and widely used programming paradigm that allows for the creation of modular, reusable, and maintainable code.