write the structure of HTML
Answers
Answered by
0
Answer:
The DTD ( ! DOCTYPE declaration).
The main container ( html element).
The head section ( head element).
The body section ( body element)
Explanation:
I hope it helps you
Answered by
3
Structure of HTML
<!Doctype html> ➞ specifies this is an html5 document.
<html> ➞ root of an html document.
<head> ➞ contains page metadata (data of data)
<title> Amazon </title> ➞ contains title
</head>
<body> ➞ The main body of the page (rendered by the browser)
...
</body> ➞ closing body tag
<html>
Similar questions