Assignments
Learning Report #8
Adding Customization to Links:
There are a few ways to add customization to your links. When a person hovers over the link, you can have the link change colors. When a person has visited a link, the link can be a different color. When a person is on the page of the link (active), the link can be a differnent color. To do this, this is done on a CSS style sheet. To want to use the a:link { color: #FFFFFF;} will give the link a white color. The a:visited {color:#000080;} will change a visited link to a navy blue like color. To change the link when someone hovers over it, use a:hover {color: #000000;}.
Information from: W3 Schools CSS Links
Why Important:
When coding your website, there are many ways to add customization to your site. Adding customization to your site, really makes your site stand out, be unique, and be the way you want it to look. Adding customization to your links, adds another affect that makes your site-yours. Plus having affects on links will help the audience person to know that is really a link.
Implication:
Look on the footer and navigation bar, to see that my links have been customized to the way I want them.