Detect HTML5 usage If you want to see that a website is using HTML5 elements or not, you only need to view the source of the website. If the source code starts with the following declaration. <!DOCTYPE HTML> Then, website was marked up with HTML5. By using the HTML5 DocType, you can let the browser…
Top 5 most popular internet web browsers A large number of people use the browser that comes with their computer’s operating system. Internet Explorer on Windows Safari on the Mac Firefox on Linux Apart from these Microsoft’s Internet Explorer is still the world’s most popular browser, but (IE) and Mozilla’s Firefox lost a…
HTML5 is the latest version of HTML and XHTML or simply it is a new standard for HTML, XHTML, and the HTML DOM. The HTML standard defines a single language that can be written in HTML and XML. It attempts to solve issues found in previous version of HTML and addresses the needs of Web…
Best way to use custom fonts on your site cross browser web fonts If you use custom font in your website using @font-face,then it may possible that it will not display fine in some browsers. This is due to the font-face browser dependency (every browser supports @font-face slightly differently). for resolving the cross…
PHP sends data from server to client/browser as soon as it is ready – this response might be line by line or by code blocks.Output buffering enables you to store up your output and send it when you are ready to go or to not send it at all, if you decide. or simple…