Tools, FAQ, Tutorials:
HTML 'link' Tag/Element
What Is an HTML "link" Tag/Element?
✍: FYIcenter.com
A "link" element is an optional sub-element of the "head" element.
A "link" element is used to specify Cascading Style Sheet (CSS) file.
Here is good example of a link element:
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html> <head> <title>My First CSS Example</title> <link rel="stylesheet" type="text/css" href="/_fyi.css" /> </head> <body> <p>Hello world!</p> </body> </html>
If you view the above the XHTML document, the browser will fetch _fyi.css and use its contents as CSS entries.
Â
⇒HTML Document Structure and Head Level Tags
⇒⇒HTML Tutorials
2017-02-20, 990👍, 0💬
Popular Posts:
How to use the Atom Online Validator at w3.org? w3.org feed validation service is provided at http:/...
Where to find tutorials on Python programming language? I want to learn Python. Here is a large coll...
How to create a new API on the Publisher Dashboard of an Azure API Management Service? If you are ne...
How to add images to my EPUB books Images can be added into book content using the XHTML "img" eleme...
Where to find tutorials on Microsoft Azure services? Here is a large collection of tutorials to answ...