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 'script' Tag/Element in 'head' Element
2024-01-10, ∼1690🔥, 0💬
Popular Posts:
How To Pad an Array with the Same Value Multiple Times in PHP? If you want to add the same value mul...
What Azure AD App Registration Manifest? Azure AD App Registration Manifest is JSON file that contai...
How to create a new API on the Publisher Dashboard of an Azure API Management Service? If you are ne...
Where to see some Examples of Invalid JSON Values? Here are some Examples of Invalid JSON Values: 1....
How to use .NET CLR Types in Azure API Policy? By default, Azure imports many basic .NET CLR (Common...