Yes, great and thanks, i would just add that maybe pic are a little bit too much. As people will use many different software, and not only notepad. Assume that people going here know how to do open, edit and save a file. Giving a filename would be more than suficient.
About the question of how to outline css, just put the content between <style></style> in a file named for eg. style.css. then, in the head section of your web page add this link replacing the <style> tag :
| CODE | <link rel="stylesheet" type="text/css" href="style.css" />
|
following this and taking the eg above, you should arrive to this
file: style.css
| CODE | A { color: #990000: font-family: Arial, Helvetica; text-decoration: none; } A:Hover { color: #FF0000; font-family: Arial, Helvetica, sans-serif; text-decoration: none; cursor: hand; } A:Active { color: #990000; font-family: Arial, Helvetica, sans-serif; text-decoration: none; }
|
file css1.html
| CODE | <HTML> <head> <title>Css Tutorial 1</title> <link rel="stylesheet" type="text/css" href="style.css" /> </head> <body> <a href=“http://www.swish-db.com”>This is gonna be your Mouseover text link</a> </body> </HTML>
|
A last way of doing , is by adding directly a style attribute in the tag you want to customise, look below with the <a> tag
file css1.html
| CODE | <HTML> <head> <title>Css Tutorial 1</title> </head> <body> <a href=“http://www.swish-db.com” style="color: #990000: font-family: Arial, Helvetica; text-decoration: none;">This is gonna be your Mouseover text link</a> </body> </HTML>
|
cheers,
cortex
|