Part-2 Prac 2 : Create registration form for social networking website using HTML5 form tag and attributes. Apply necessary validation using HTML5 pattern attributes which Specifies a regular expression to check the input value against.
Registration Form Tag Used In Form : Form tag Input tag Select tag 1. f orm tag : I t is the root tag for create html form. The <form> element can contain one or more of the following form elements: <input> <button> <select> 2. i nput tag : The <input> tag specifies an input field where the user can enter data.input elements are used within a form element to declare input controls that allow users to input data.An input field can vary in many ways, depending on the type attribute. Attributes : Pattern : Specifies a regular expression that an input element's value is checked against Placeholder : Specifies a short hint that describes the expecte...