Category: Web Starter
-
HTML-What Is DOCTYPE Tag
On the HTML document you have often seen that there is a <!DOCTYPE html> declaration before the <html> tag. HTML <!DOCTYPE> tag is used to inform the browser about the version of HTML used in the document. It is called as the document type declaration (DTD). Technically <!DOCTYPE > is not a tag/element, it just…
-
HTML Block and Inline Elements
There are two display values: block and inline. Block-level Elements A block-level element always starts on a new line. A block-level element always takes up the full width available (stretches out to the left and right as far as it can). Inline Elements An inline element does not start on a new line. An inline…