treehouse : what would you like to learn today?
Web Design Web Development iOS Development

[Solved] got problem with css..

  • hello guys..hope i will get solve. m very fresh n new in css. and trying to build website on my own. n also finish homepage with the help of css. now turn for 2nd page so the question is.. do i need to make separate css for next page? or not? plz give me some advise with example if you can. please..

  • One CSS, that's all you need. Develop all the content with HTML within the body of the document and than decide how you going to style it with CSS.

  • You need to make your CSS external by creating a .css file.

    You can then call to it in the head area of each document, for example;

      <link rel="stylesheet" href="styles.css" type="text/css" />
    
  • thanks mate...