write the structure of an HTML document.
please answer it quickly it's argent............
Answers
Answer:
An HTML 4 document is composed of three parts: a line containing HTML version information, a declarative header section (delimited by the HEAD element), a body, which contains the document's actual content.
Explanation:
Hope this answer is helpful for you.
Thank you.
PLEASE MARK ME BRAINLIEST
Answer:
An 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.
Explanation:
Structure of an HTML Document
An 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>
Should appear at the beginning of your document.
</html>
Should appear at the end of your document.
HTML Tags
This leads us nicely on to say more about [X]HTML tags. All formatting tags (or elements) are of the general form:
<tag_on>
Switches the tag sequence on. For example, to bold some text add a <strong> at the beginning of the text.
</tag_off>
Switches the tag sequence off. The tag_on and tag_off tags are the same except the off tag has an / character in front of it. For example, to switch off the bolding add a </strong> character sequence at the end of the text that is to be given the attribute of bolding.
Note: HTML is a case insensitive mark-up language, i.e. as far as all browsers are concerned the tags <HTML> and <html> are indistinguishable. However XHTML uses only lowercase tags which will be used throughout this course.