How to determine a given web page/site is using HTML5 and not its older versions
Requirement: You are a programmer/web developer/QA tester, you require to ensure that web page designed/tested is using HTML5. How to find HTML version of Web page: Any browser detects the HTML version of the web pages by reading the very first line of a web page that is a declaration of <!DOCTYPE>. The <!DOCTYPE> is not an HTML tag. It’s the very first instruction to the browser about what version of HTML the page is written in and/or what version of HTML to be used to render the page correctly. Example: In below case the web page is using […]
Read more