html - Code Igniter head tag not loading -
<html> <head> <? $this->common_lib->common_header_page("online appointments @ favourite beauty salons , spas.","best discounts , offers @ favourite beauty salons , spas in gurgaon. search, compare, review , book online appointments"); ?> </head> <body> <div class="body-inner home-page"> <!--header start --> <div class="container"> <div class="row"> <?php $this->load->view('common/main_navigation_bar');?> <!--/ header start --> <!--banner sec start--> <?php $this->load->view('home/banner'); ?> <!--/banner sec end--> </div>
for reason head tag not loading , website loads after banner sec has ended
please try with
use full <?php tag instead short tag <?
as code shows using short tag on head tag.
Comments
Post a Comment