Creating your own Styles
Recall a sample css style body { font-family: Verdana, "Minion Web", Helvetica, sans-serif; font-size: 1em; text-align: justify; } Selector Opening Curly brace Property name Value Closing Curly brace
Get ready 1st you need a web page. (Download from Web site) 2nd a css style sheet (Download from the Web) Both can be accessed from the Web 10 site.
Linking a style sheet Open the web page Make an external link to the style sheet This is what the code looks like: <link rel="stylesheet" href="stylesheetname.css"> where stylesheetname.css refers to the name of your file, and an appropriate path, if needed.
Edit the style sheet Add this to your style sheet .specialfont { font-family: font-family: "Times New Roman", Times, serif; color: green }
To use special style you must: Apply the style Voila.. Your own unique style that can be applied to any element in your web page