192k views
4 votes
When creating an HTML document, you would use the tag:

Question 1 options:


<HTML>

<HEAD>

<body>

</html/>









/>

User Perazzo
by
6.4k points

1 Answer

3 votes
HTML> : is usually the beginning syntax of the html document
<HEAD>: head defines the meta information for the html document, used to define css to include, javascript to include
<body>: contains main elements and design tags such as p, div etc
</html/>: </html> is the closing element of an html document but </html/> is not valid.
Hence all of them are used except the last one.
User Jistr
by
6.2k points