which feature of html that enables to keep the navigation link always visible during navigation without writing the code in every page...
Please can anyone answer this question
Thank you..
Please can anyone answer this question
Thank you..
[B]home page[/B] <?php include 'pathofyour/header.php'; include 'pathofyour/navigation.php'; include 'pathofyour/homecontent.php';// include 'pathofyour/footer.php'; ?>
[B]about us page[/B] <?php include 'pathofyour/header.php'; include 'pathofyour/navigation.php'; include 'pathofyour/aboutuscontent.php';// include 'pathofyour/footer.php'; ?>
[B]contact us page[/B] <?php include 'pathofyour/header.php'; include 'pathofyour/navigation.php'; include 'pathofyour/contactuscontent.php';// include 'pathofyour/footer.php'; ?>
[B]header.php[/B] <html> <head> <title></title> </head> <body>
[B]navigation.php[/B] <ul> <li><a href="home.php">home</a></li> <li><a href="aboutus.php">about us</a></li> <li><a href="contactus.php">contact us</a></li> </ul>
[B]footer.php[/B] </body> </html>
[B]homecontent.php[/B] <h2>Home page</h2>
[B]aboutuscontent.php[/B] <h2>About us page</h2>
[B]contactuscontent.php[/B] <h2>Contact us page</h2>
Comment