+ 3
Is this code correct? <html><head><title></title></head><body></body><\html>
6 Respostas
+ 3
Ans:- No
Correct Ans is:
<html><head><title></title></head><body></body></html>
[This code is correct]
Your code are incorrect. Because you use back-slash(\) in html closing tag . You should use front-slash(/) in all types of closing tag. Such as: </title></style></head> </p></b></i></u></ol></table></body></html> etc....
Otherwise, your programme will wrong..
+ 5
Not back slash <\html> use slash
For example like this</html>
+ 2
Just the closing html tag use </html>(forward slash to close) otherwise it is ok
+ 1
Nooooo
0
<html>
<head>
who are you
</head>
<body>
i am newgen
</body>
</html>
Is this code is correct?
- 2
Yes