XHTML - What Is a Link Tag/Element
Interview Question Database For Software Developers
|
|
| What Is a Link Tag/Element | | What Is a Link Tag/Element? - XHTML 1.0 Tutorials - Document Structure and Head Level Tags | | By: 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.
| | ID: 1367 | Rank: 1064 | Votes: 0 | Views: 36 | Submitted: 20070512 |
1061 :-) | | What Is the Base Tag/Element | | What Is the Base Tag/Element? - XHTML 1.0 Tutorials - Document Structure and Head Level Tags... | | Submitted: 20070512 |
|
1063 :-) | | What Is a Script Tag/Element | | What Is a Script Tag/Element? - XHTML 1.0 Tutorials - Document Structure and Head Level Tags... | | Submitted: 20070512 |
|
1064 :-) | | What Is a Link Tag/Element | | What Is a Link Tag/Element? - XHTML 1.0 Tutorials - Document Structure and Head Level Tags... | | Submitted: 20070512 |
|
1061 :-) | | What Is a Style Tag/Element | | What Is a Style Tag/Element? - XHTML 1.0 Tutorials - Document Structure and Head Level Tags... | | Submitted: 20070512 |
|
1077 :-) | | What Is a FORM Tag/Element | | What Is a FORM Tag/Element? - XHTML 1.0 Tutorials - Understanding Forms and Input Fields... | | Submitted: 20070512 |
|
Copyright © 2009 FYIcenter.com
All rights in the contents of this Website are reserved by the individual author.
No part of the contents may be reproduced in any form without author's permission.
|
|
|