+ 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
1 Resposta
+ 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>