What is the basic structure of HTML? Write complete
code to display it. Explain any 5 paired tag and any 2
singular tag of HTML to display its use. Write
complete code to show it.
Answers
Answered by
1
basic struture of HTML :
HTML document has two main parts: the head and the body. But firstly every HTML document should start by declaring that it is an HTML document. These tags are of the form: <html>
pair of tage:
These are all paired tag, these have starting tag < “tag_name ” > and closing tag </ “tag_name”>.
...
Example of Paired Tag:
<body></body>
<table></table>
<h1></h1>
<div></div>
Singular Tags
A tag is set to be a singular tag when there is no closing tag for that or Tag is said to be singular tag when there is no companion tag
Similar questions