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 Happens If a Hyper Link Points to an Image
What Happens If a Hyper Link Points to an Image? - XHTML 1.0 Tutorials - Understanding Hyper Links and URLs
✍: FYIcenter.com
If you want to build a hyper link to allow visitors to see an image by clicking a hyper link, you can put the URL of the image directly in the "href" attribute of the hyper link. If a visitor clicks the link, the browser will fetch and display the image.
The tutorial example below shows you how image files can be linked by hyper links:
<p>Click the hyper link to see the <a href="http://www.ihrcanada.com/graphics/scenary.gif" >Scenary Image</a> provided by www.ihrcanada.com.</p>
The above code is included below in this document, so you can try it now.
Click the hyper link to see the Scenary Image provided by www.ihrcanada.com.
2007-05-12, 5578👍, 0💬
Popular Posts:
. How can a servlet refresh automatically if some new data has entered the database? You can use a c...
What will be printed as the result of the operation below: #define swap(a,b) a=a+b;b=a-b;a=a-b; void...
How do I debug thread ? This window is only seen when the program is running in debug mode. In windo...
Regarding C Coding Given: Line in file Contents 30 int * someIDs, theFirst, *r; 110 someIDs =GetSome...
What Are Named Parameters? - Oracle DBA FAQ - Creating Your Own PL/SQL Procedures and Functions Name...