ইনপুট টাইপ বোতামটি একটি জমা বাটন বা রিসেট বোতাম হতে পারে। CSS-এর সাহায্যে আমরা ওয়েব পেজে যেকোনো বোতাম স্টাইল করতে পারি।
আপনি স্টাইল ইনপুট টাইপ বোতামে নিম্নলিখিত কোড চালানোর চেষ্টা করতে পারেন:
উদাহরণ
<!DOCTYPE html> <html> <head> <style> input[type = submit], input[type = reset] { background-color: orange; border: none; text-decoration: none; color: white; padding: 20px 20px; margin: 20px 20px; cursor: pointer; } </style> </head> <body> <p>Fill the below form,</p> <form> <label for = "subject">Subject</label> <input type = "text" id = "subject" name = "sub"><br><br> <label for = "student">Student</label> <input type = "text" id = "student" name = "stu"><br> <input type = "reset" value = "Reset"> <input type = "submit" value = "Submit"> </form> </body> </html>