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.

0 Response to "link"

Post a Comment