The DOCTYPE html should be always capitalize? | Sololearn: Learn to code for FREE!
¡Nuevo curso! ¡Todo programador debería aprender IA Generativa!
Prueba una lección gratuita
+ 1

The DOCTYPE html should be always capitalize?

<!DOCTYPE html> <html> <head> <title>Login Form</title> </head> <body> <form> </form> <label>Username </label> <input type="text"name="username"> <label>Password </label> <input type="password"name="password"> <input type="submit"value="Login "> </body> </html> https://www.sololearn.com/discuss/96845/?ref=app

16th Nov 2017, 6:27 AM
Rony Prevot
Rony Prevot - avatar
1 Respuesta
+ 1
Nope.... html tags are not-case sensetive, attribute names as well. Note that attribute values are case sensetive. ex. id, class names are case sensetive! So you can also write it as <!doctype html>
16th Nov 2017, 7:26 AM
Uria