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, ∼1997🔥, 0💬
Popular Posts:
How to install "C++/CLI Support" component in Visual Studio? I need to build my Visual Studio C++/CL...
How To Access a Global Variable inside a Function? in PHP? By default, global variables are not acce...
How To Get the Minimum or Maximum Value of an Array in PHP? If you want to get the minimum or maximu...
How to decode the id_token value received from Google OpenID Connect authentication response? Accord...
How to use the "set-variable" Policy Statement to create custom variables for an Azure API service o...