Welcome !
नई पोस्ट की सूचना सबसे पहले पाने के लिए अपना नाम और ईमेल आईडी दर्ज करें!
<html> <head> <link rel="stylesheet" href="form.css"> <title>Form Tag in HTML </title> </head> <body> <form> <fieldset> <legend>Form</legend> Website: <input type="text" name="name" placeholder="Website Name" value="Codinger.in" disabled=""/><br><br> NickName: <input type="text" name="name" placeholder="Enter Nick Name" autofocus required value="Samrat Suresh" readonly=""/><br><br> Profile Picture: <input type="file"/><br><br> Name: <input type="text" name="name" placeholder="Enter Your Name" autofocus required /><br><br> <!---autofocus attribute- input box में Cursor का अपने आप Blinking करते हुए दिखाने के लिए autofocus का उपयोग किया जाता है। ---> <!--- placeholder - User को input box में पहले से कुछ लिखा हुआ दिखाने के लिए placeholder का Use किया जाता है। ---> eMail: <input type="email" name="email" placeholder="Enter Email Id" /><br><br> Mobile No: <input type="number" name="mobilenumber" placeholder="Enter 10 Digit Mob No..." /><br><br> Aadhar No.: <input type="number" placeholder="Enter Aadhar No..." maxlength="12" required="" /><br><br> Select Color: <input type="color" value="#F50505"/><br><br> Gender: <input type="radio" name="gender" value="m" checked=""/>Male <input type="radio" name="gender" value="f" />Female<br><br> <!--- Radio Button में से कोई एक Select करवाना है तो उनके name समान होने चाहिए। ---> Time: <input type="time"/><br><br> Date: <input type="date"/><br><br> Weeks: <input type="week"/><br><br> Month: <input type="month"/><br><br> Date Time: <input type="datetime-local"/><br><br> Range: <input type="range"/><br><br> Hobbies: <input type="checkbox"/>Cricket <input type="checkbox"/>Kho Kho<br><br> Country: <select> <option>Select Country</option> <optgroup label="Asia"> <option>India</option> <option>USA</option> </optgroup> </select><br><br> State: <select> <option value="r">Select State</option> <option value="r">Rajasthan</option> <option value="h">Haryana</option> <option value="p">Punjab</option> </select><br><br> Password: <input type="password" placeholder="Enter Password"/><br><br> Secert: <input type="hidden" name="secert"/><br><br> Address: <textarea></textarea> <!--- textarea एक paid Tag है। ---> <input type="submit" name="submit" value="Submit" /> <input type="reset" /> <!--- reset atribute- अगर हमारे भरे हुए फॉर्म में एक से अधिक गलतियां हो गई है तो पूरे फॉर्म के Data को साफ (Clear) करने के लिए reset का Use किया जाता है.---> </fieldset> </form> </body> </html>