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, 4876👍, 0💬
Popular Posts:
What are urlencode() and urldecode() functions in PHP? string urlencode(str) - Returns the URL encod...
If we have the following in a Java code: String s="abc"; String s2="abc"; Then what will be output o...
From performance point of view how do they rate ? Repeater is fastest followed by Datalist and final...
When should the register modifier be used? Does it really help? The register modifier hints to the c...
How can we format data inside DataGrid? Use the DataFormatString property.