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 -

How to put a lock and transaction on table using spring 4 or above using jdbcTemplate and annotations like @Transactional? -

How to understand 2 main() functions after using uftrace to profile the C++ program? -