modify css styles

  • Thread starter Thread starter David French
  • Start date Start date
D

David French

I have styles in several web pages.
I would like to now have them in a CSS so as to make all the pages in my web
appear and act the same.
Is there a way to copy a style from one page to another without having to
choose all the attributes manually?

Dave French
 
use an external style sheet. the code below goes in your "head" section
referenceing the external CSS file.

<link rel="stylesheet" type="text/css" href="yourStyle.css">
 
Back
Top