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, ∼1910🔥, 0💬
Popular Posts:
How to start Visual Studio Command Prompt? I have Visual Studio 2017 Community version with Visual C...
How to validate the id_token signature received from Azure AD v2.0 authentication response? You can ...
How to add request query string Parameters to my Azure API operation 2017 version to make it more us...
How to use "link" command tool to link objet files? If you have object files previously compiled by ...
Where to find tutorials on OpenID? Here is a large collection of tutorials to answer many frequently...