<!DOCTYPE html> <html> <head> <title>Compound Annual Growth Rate Calculator</title> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <style> body { font-family: Arial, sans-serif; padding: 20px; } h1 { text-align: center; } form { display: flex; flex-direction: column; align-items: center; margin-top: 20px; } label { display: block; margin-bottom: 5px; font-weight: bold; } input[type="number"] { width: 100%; padding: 10px; margin-bottom: 10px; border: 1px solid #ccc; border-radius: 5px; font-size: 16px; box-sizing: border-box; } button { background-color: #4CAF50; color: white; padding: 10px; border: none; border-radius: 5px; font-size: 16px; cursor: pointer; transition: background-color 0.3s ease; } button:hover { background-color: #3e8e41; } .result { margin-top: 20px; ...
Comments
Post a Comment