|
Links
Content: Creating a link: Creating a link that opens in a new window: Creating a link that displays a message when you hover it: This link displays a message when you hover it! <a href="http://yourlink.com" title="Message here"> Your link </a> Creating an image-link: Styling links: You can use this stylesheet to control the style of all the links on a page. The text that is written between the /* and */ are notes to what the code below it changes. <style> /*all links*/ a:link{ color: #XXXXXX; font-family: FONT NAME HERE; font-size: Xpt; } /*visited links*/ a:visited{ color: #XXXXXX; font-family: FONT NAME HERE; font-size: Xpt; } /*on mouseover*/ a:hover{ color: #XXXXXX; font-family: FONT NAME HERE; font-size: Xpt; background: transparent; } /*on click*/ a:active{ color: #XXXXXX; font-family: FONT NAME HERE; font-size: Xpt; } </style> |