link

link
HTML link Element
The HTML <link> element is used to specify relationships between your web document and other external file resources. This tells the browser software to fetch that resource and apply it to your page according to what type of link it is. This is a Void Element so it does not get a closing tag like most elements. 
HTML CODE EXAMPLE
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="style/style.css">
<link rel="icon" href="favicon.ico" type="image/x-icon">
</head>
<body>
</body>
</html>
 click here to code.

Related Posts :

  • em em The HTML <em> emphasis element is used to place emphasis on text. HTML CODE … Read More...
  • embed embed NOTE: This new element is HTML5 and will be a standardized element in 2014. The … Read More...
  • figure figure NOTE: This new element is HTML5 and will be a standardized element in 2014. The HTM… Read More...
  • fieldset fieldset The HTML <fieldset> element is usually used within the <form> ele… Read More...
  • figcaption figcaption NOTE: This new element is HTML5 and will be a standardized element in 2014. The… Read More...

0 Response to "link"

Post a Comment