<link>
The <link>
tag establishes the relationship of the current page with an external web resource (such as CSS files, HTML pages, images). The type of relationship is specified by the rel
attribute, while the href
attribute specifies the path to the web resource. Similar to the <a> tag, the href
attribute of the <link>
tag accepts URL-addresses or the data URIs.
For example, you can specify the favicon as follows:
<link rel="shortcut icon" href="//static.base64.guru/uploads/images/1x1.gif" />
The same can be achieved by encoding image to Base64 and embedding it using data URI:
<link rel="shortcut icon" href="data:image/gif;base64,R0lGODdhAQABAPAAAP8AAAAAACwAAAAAAQABAAACAkQBADs" />
Both behaviors are identical — when you open the page, your browser loads the same icon specified within <link>
tag. The difference is that in the first case the browser sends one HTTP request to fetch the external image, when in the second case the image is already loaded in the browser’s memory and it does not need to send any HTTP requests.
Please note that Base64 Data URIs have some limitations. In addition, like almost any unconventional solutions, it has both advantages and disadvantages. Therefore, if you plan to use it, first of all, read about Base64 Data URI. The main thing that you need to remember is that you do not need to use redundant technologies, when everything can be done much easier.
For example, you can load a stylesheet as follows:
<link rel="stylesheet" type="text/css" href="//static.base64.guru/uploads/css/body_red.css" />
The same stylesheet can be loaded without any HTTP requests by encoding CSS to Base64 and embedding it using data URI:
<link rel="stylesheet" type="text/css" href="data:text/css;base64,Ym9keXtjb2xvcjpyZWR9" />
In the second example, the code is more efficient and even less, but it is “wrong” (or, at best, is just for fun). The point is that we can “simplify” it using the <style> tag. Thus, we do not need to do any HTTP requests, nor to use the data URI:
<style>body{color:red}</style>
Comments (21)
I hope you enjoy this discussion. In any case, I ask you to join it.