Tag: header

  • Generic layout for header and footer

    Generic layout for header and footer

    For creating a generic layout in Laravel, first of all we need to create a new folder inside the views with the name layouts and create a new file layout.blade.php inside this folder and perform the following steps: Copy all the header and footer content that is same in all the view files from beginning…

  • Header, Footer in WordPress -4

    Header, Footer in WordPress -4

    get_header() and get_footer() includes the header and footer template for a customize theme. Header.php <!DOCTYPE html> <html>     <head>       <meta charset=”UTF-8″>       <meta name=”viewport” content=”width=device-width, initial-scale=1.0″>         <?php wp_head();?>     </head>     <body> [HTML and PHP Code of Header] Wp_head () prints scripts or data in the head tag of HTML Footer.php [HTML and PHP Code of  Footer ] <?php wp_footer();?> </body> Wp_footer () prints scripts or…