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, 4972👍, 0💬
Popular Posts:
How many bits are used to represent Unicode, ASCII, UTF-16, and UTF-8 characters? Unicode requires 1...
What is the difference between strings and character arrays? A major difference is: string will have...
How does ASP.NET maintain state in between subsequent request ? Refer caching chapter.
If locking is not implemented what issues can occur? IFollowing are the problems that occur if you d...
Where Is the Submitted Form Data Stored? - PHP Script Tips - Processing Web Forms When a user submit...