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:
How To Define a Bookmark
How To Define a Bookmark? - XHTML 1.0 Tutorials - Understanding Hyper Links and URLs
✍: FYIcenter.com
A bookmark is a named reference point in a XHTML document. If a bookmark can be included in the URL that represents this document, the browser will automatically move the display window to the reference point as soon as the document is open.
If you want to define a bookmark in your XHTML document, you need to use an "a" element with the "name" attribute. Here are basic rules about defining a bookmark with "a" element:
Here is a good tutorial example of bookmark elements:
<?xml version="1.0" ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html> <head> <title>Bookmark Elements</title> </head> <body> <h3>XHTML FAQ by FYIcenter.com</h3> <h4><a name="101">Question 101</a> - What is XHTML?</h4> <p>XML + HTML.</p> <h4><a name="201">Question 201</a> - Where can I download XHTML 1.0?</h4> <p>Nowhere.</p> <h4><a name="301">Question 301</a> - How to install XHTML 1.0?</h4> <p>Nobody knows.</p> </body> </html>
If you save the above document as bookmark.html, and view it with
Internet Explorer, you can not see any signs of bookmarks. But they
embedded in all section titles:

2007-05-12, 6049👍, 0💬
Popular Posts:
Give me the example of SRS and FRS SRS :- Software Requirement Specification BRS :- Basic Requiremen...
What is shadowing ? When two elements in a program have same name, one of them can hide and shadow t...
Once I have developed the COM wrapper do I have to still register the COM in registry? Yes.
How can you implement MVC pattern in ASP.NET? The main purpose using MVC pattern is to decouple the ...
Can we have static indexer in C# ? No.