HELP ME SOLVE THIS HTML PROBLEM FIX THE MAX AND MIN VALUES THEY AREN'T WORKING | Sololearn: Learn to code for FREE!
Nouvelle formation ! Tous les codeurs devraient apprendre l'IA générative !
Essayez une leçon gratuite
0

HELP ME SOLVE THIS HTML PROBLEM FIX THE MAX AND MIN VALUES THEY AREN'T WORKING

<DOCTYPE html> <html> <head> <title>''Page Title''</title> </head> <body> <h1>a form to be filled</h1> <form> <div> <label for='1st name'>enter your 1st name:</label> <input type='text' id='1st name' placeholder='type here' required> </div> <br> <div> <label for='last name'>enter your last name:</label> <input type='text' id='last name'placeholder="type here" required> </div> <br> <div> <label for='email'>enter your email id:</label> <input type='email' id='email' placeholder='type here' required> </div> <br> <div> <label for='pw'>enter your password:</label> <input type='password' id='pw' placeholder='type here'maxlength=7 required> </div> <br> <div> <label for='tel'>enter your contact no.</label> <input type='tel' id='tel' placeholder='type here' maxlength="10" required> </div>

25th May 2024, 1:20 PM
Aryan Kadam
Aryan Kadam - avatar
6 Réponses
+ 5
There is no `max` and `min` attributes in your code!!
25th May 2024, 2:15 PM
Gulshan Mahawar
Gulshan Mahawar - avatar
+ 3
Gentle reminder: please avoid writing in all capital letters. It is rude, because it is perceived as yelling or screaming on the internet.
26th May 2024, 4:45 AM
Tibor Santa
Tibor Santa - avatar
25th May 2024, 2:35 PM
Ausgrindtube
Ausgrindtube - avatar
+ 2
Tibor Santa I have also seen that for some people it's the way their accessibility options work (hearing/sight impaired)
26th May 2024, 10:12 AM
Ausgrindtube
Ausgrindtube - avatar
+ 1
Hey there... Nice practice, but you need to remove the extra <div> containers.. It's okay you can use any number of containers, but it's not a good practice.. Plus, also, if you want to group similar input fields, then put them in a fieldset container, Like, first name, and last name, in a fieldset container, or maybe personal information in a fields set container..
26th May 2024, 6:46 PM
Javed Ullah
Javed Ullah - avatar
0
Hey I am unique & have a healthy body. The usage of uppercase is just to take your attention
26th May 2024, 4:01 PM
Aryan Kadam
Aryan Kadam - avatar