### **Code for the USA to India Calculator** #### 1. **HTML (index.html)** ```html USA to India Calculator USA to India Calculator Convert US Dollars (USD) to Indian Rupees (INR) Enter Amount (USD): Convert to INR ``` --- #### 2. **CSS (styles.css)** ```css /* General Styles */ body { font-family: Arial, sans-serif; background-color: #f4f4f4; margin: 0; padding: 0; display: flex; justify-content: center; align-items: center; height: 100vh; background: linear-gradient(135deg, #003366, #ffffff, #ff9933); /* USA and India theme */ } .container { background-color: #ffffff; padding: 20px; border-radius: 10px; box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); text-align: center; } h1 { color: #003366; /* USA blue */ } p { color: #666; } .calculator { margin-top: 20px; } .input-group { m...
Comments
Post a Comment