Untitled
unknown
plain_text
2 years ago
1.9 kB
4
Indexable
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Profit Calculator</title> <style> body { font-family: Arial, sans-serif; } .calculator { border: 1px solid #ccc; border-radius: 5px; padding: 20px; width: 300px; } input[type="text"] { width: 100%; padding: 12px 20px; margin: 8px 0; box-sizing: border-box; } .button { background-color: #4CAF50; color: white; padding: 14px 20px; margin: 8px 0; border: none; cursor: pointer; width: 100%; } .button:hover { opacity: 0.8; } </style> </head> <body> <h2>Profit Calculator</h2> <div class="calculator"> <form action="/action_page.php"> <label for="fname">Full Name</label> <input type="text" id="fname" name="fname" placeholder="Enter Full Name.."> <label for="email">Email</label> <input type="text" id="email" name="email" placeholder="Enter Email.."> <label for="phone">Phone Number</label> <input type="text" id="phone" name="phone" placeholder="Enter Phone Number.."> <label for="tradevalue">Trade Value</label> <input type="text" id="tradevalue" name="tradevalue" placeholder="Enter Trade Value.."> <label for="leverage">Leverage</label> <input type="text" id="leverage" name="leverage" placeholder="Enter Leverage.."> <label for="gains">Gains</label> <input type="text" id="gains" name="gains" placeholder="Enter Gains.."> <input class="button" type="submit" value="Calculate"> </form> </div> </body> </html>
Editor is loading...
Leave a Comment