32.
Which of the following HTML structures is correctly formatted?
<!DOCTYPE html> <body> <head> </head> </html>
<!DOCTYPE html> <body> <html> </body>
<!DOCTYPE html> <html> <body> </body> <head> </head>
<!DOCTYPE html> <html> <head> </head> <body> </body> </html>
Correct: D
In HTML, every page should start with <!DOCTYPE html> to ensure proper rendering by the web browser. Also, the page should be enclosed in the <html> tags. A complete HTML document should include <head> and <body> sections enclosed within the <html> tags.