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, 4579👍, 0💬
Popular Posts:
How To Compare Two Strings with strcmp()? - PHP Script Tips - PHP Built-in Functions for Strings PHP...
How can a servlet refresh automatically if some new data has entered the database? You can use a cli...
What is the quickest sorting method to use? The answer depends on what you mean by quickest. For mos...
Which bit wise operator is suitable for turning off a particular bit in a number? The bitwise AND op...
How can I search for data in a linked list? Unfortunately, the only way to search a linked list is w...