How do you make a quote appear from the article when scrolled over the link?


Ok, im new creating web pages but I want a quote to appear from the article when a user scrolls over the link to the article. (Ex. On www.my.yahoo.com when I scroll over a news article a small quote will appear from that page). Is there an easy way to do this? Any suggestions or links would be great

 

For IMG tags, use the ALT attribute.
For links (<a href=”…”></a>), use the TITLE attribute.
Example:
<a href=”http://www.yahoo.com” title=”Click to go to Yahoo”>Yahoo.com</a>

Comments are closed.