The correct sequence of HTML tags for starting a webpage is -
(1) Head, Title, HTML, body
(2) HTML, Body, Title, Head
(3) HTML, Head, Title, Body
(4) HTML, Head, Title, Body
Answers
Answered by
28
Answer:
4. HTML, Head, Title Body
Answered by
39
The correct sequence of HTML tags for starting a webpage is HTML, Head, Title, Body.
Explanation:
The basic structure goes strictly as follow:
<html>
<head>
<title>
<!-- Title of the page goes here. It is displayed as tab name -->
</title>
</head>
<body>
<!-- The content to be displayed on the page goes here -->
</body>
</html>
Learn more:
1. Create an html page with 7 separate lines in different colors.
https://brainly.in/question/35010731
2. Write HTML co-de to generate the following table
https://brainly.in/question/14751808
Similar questions