Thanks to visit codestin.com
Credit goes to www.scribd.com

0% found this document useful (0 votes)
6 views1 page

Index HTML

The document is an HTML file for a Currency Converter web application. It includes a title, input fields for amount and currency selection, a button to trigger conversion, and a result display area. The file links to an external CSS stylesheet and a JavaScript file for functionality.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
6 views1 page

Index HTML

The document is an HTML file for a Currency Converter web application. It includes a title, input fields for amount and currency selection, a button to trigger conversion, and a result display area. The file links to an external CSS stylesheet and a JavaScript file for functionality.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 1

3/22/25, 1:59 PM index.

html

index.html

1 <!DOCTYPE html>
2 <html lang="en">
3 <head>
4 <meta charset="UTF-8">
5 <meta name="viewport" content="width=device-width, initial-scale=1.0">
6 <meta http-equiv="X-UA-Compatible" content="ie=edge">
7 <title>Currency Converter</title>
8 <link rel="stylesheet" href="styles.css">
9 </head>
10 <body>
11 <div class="converter">
12 <h1>Currency Converter</h1>
13 <input type="number" id="amount" placeholder="Enter amount" />
14 <select id="from-currency"></select>
15 <select id="to-currency"></select>
16 <button onclick="convertCurrency()">Convert</button>
17 <div id="result"></div>
18 </div>
19 <script src="script.js"></script>
20 </body>
21 </html>
22

localhost:3134/6714fd1a-ce69-4014-8e42-ab8da2ff1ab6/ 1/1

You might also like