Categories:
.NET (357)
C (330)
C++ (183)
CSS (84)
DBA (2)
General (7)
HTML (4)
Java (574)
JavaScript (106)
JSP (66)
Oracle (114)
Perl (46)
Perl (1)
PHP (1)
PL/SQL (1)
RSS (51)
Software QA (13)
SQL Server (1)
Windows (1)
XHTML (173)
Other Resources:
What Is a Link Tag/Element
What Is a Link Tag/Element? - XHTML 1.0 Tutorials - Document Structure and Head Level Tags
✍: 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.
2007-05-12, 4939👍, 0💬
Popular Posts:
Can JavaScript steal text from your clipboard? It is true, text you last copied for pasting (copy &a...
How do you pass control from one JSP page to another? Use the following ways to pass control of a re...
Can you explain duplex contracts in WCF? In duplex contracts when client initiates an operation the ...
How To Retrieve the Count of Updated Rows? - Oracle DBA FAQ - Working with Database Objects in PL/SQ...
How To Download and install PSP Evaluation? - PSP Tutorials - Fading Images to Background Colors wit...