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
Post a Comment