Which HTML tag is called the root element of an HTML document?
Attempt Now
Which of the following is not a difference between HTML and XHTML?
Attempt Now
Which HTML5 element is used to define the structure of an HTML document, including the title and meta information?
Attempt Now
What will happen,when the below web page is loaded? <html> <head> <title>JavaScript</title> </head> <body bgcolor=#0000ff> <script language=JavaScript> <!-- document.write(<h1> hello world </h1>); //--> </script> </body> </html>