The
<link>
tag is used to set relationships between the main file and other files
that you want your main file to be able to access. Many times we see
this tag when we link to our external CSS style sheets. We also see it
when setting a link to our favicon.ico file for our website. This tag is
normally placed within the
<head> tag of your
document.
<link href="styles/sitestyle1.css" rel="stylesheet" type="text/css" />
<link rel="icon" href="favicon.ico" type="image/x-icon" />
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon" />