Posts

Showing posts from April, 2023

HTML CODING FOR CALCULATOR

 CODING FOR CALCULATOR <!DOCTYPE html> <html> <head> <title>Calculator</title> <style> body { background-color: #f4f4f4; font-family: Arial, sans-serif; } h1 { text-align: center; margin-top: 50px; } form { display: flex; flex-wrap: wrap; justify-content: center; margin-top: 50px; } input { padding: 10px; margin: 10px; border-radius: 5px; border: none; font-size: 20px; text-align: center; } input[type="button"] { background-color: #00ccff; color: #fff; cursor: pointer; } input[type="button"]:hover { background-color: #00b3e6; } </style> </head> <body> <h1>Calculator</h1> <form name="calculator"> <input type="text" name="result" id="result" value="" disabled> <input type="button" value="...