AkiVaMu Just tiny things come to mind...

Posts related to HTML


The best place to put script tags in HTML

When browsing a web page, browser will fetch HTML page. It then parses sequentially line by line, and shows HTML components to user (like title, head…). When encounters a <script> tag, browser has to request that script from URL, and during that time, nothing will be shown to user, not until browser finished requesting that script. It creates a blocking operation, which is bad in UX.

more...