html - How can I apply CSS Style to my second page [about.php]? -


my file names: 1.) about.php 2.) styles.css

the same stylesheet applied index.php .

i want style section part of page. tried styling [eg.], .section-info{color:#555;}

but didn't helped. should change stylesheet name styles.php? in advance.

<?php    /* website header */        include ("include/header.php");        ?>    <!-- website page-2 main content -->    <div class="wrapper">                                  <section>                  <div class="section-info">                      <h2>about us</h2>                          <p>blah...blah...bllah....</p>                  </div>                                </section>                   </div>                              <?php      /* website footer */            include ("include/footer.php");  ?>

try give different class or inline style.


Comments

Popular posts from this blog

'hasOwnProperty' in javascript -

python - ValueError: No axis named 1 for object type <class 'pandas.core.series.Series'> -

java - How to provide dependency injections in Eclipse RCP 3.x? -