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, 4739👍, 0💬
Popular Posts:
What is a delegate ? Delegate is a class that can hold a reference to a method or a function. Delega...
How To Manage Transaction Isolation Level? - Oracle DBA FAQ - Introduction to PL/SQL Transaction iso...
How To Control Horizontal Alignment? - XHTML 1.0 Tutorials - Understanding Tables and Table Cells By...
What does a well-written Object Oriented program look like? A well-written object oriented program e...
Can we get a strongly typed resource class rather than using resource manager? In the previous quest...