MCSL 216 MCA NEW Practical ~ common questions suggestions
Topic: JS VALIDATION Q1. Design a form for booking room through a Hotel website. The form should have relevant fields (make suitable assumptions). Further, the form should have Submit and Reset button. Now, perform following: Marks: 20 Solution: <html> <title>hotel form booking</title> <body> <br> <h2>Hotel Form</h2> <br> <form id="booking_form"> <label for="p_name">Person Name</label> <br> <input type="text" id="p_name" name="p_name"> ...