This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<img src="<?php echo get_template_directory_uri() ?>/img/logo.png" alt="" /> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html <?php language_attributes(); ?>> | |
<head> | |
<meta charset="<?php bloginfo( 'charset' ); ?>"> | |
<title><?php wp_title( '|', true, 'right' ); ?></title> | |
<link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>"> | |
</head> | |
</html> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="discount_hotel"> | |
<div class="container"> | |
<div class="row"> | |
<div class="col-md-12"> | |
<div id="dis-hotel" class="owl-carousel owl-theme"> | |
<div class="item"> | |
<div class="offer_desc"> | |
<img src="<?php echo get_template_directory_uri(); ?>/img/22.jpg" alt="Owl Image"> | |
<a href="#">Dhaka | Bangladesh | 0.00</a> | |
</div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$(window).scroll(function(){ | |
if($(this).scrollTop() > 1){ | |
$('header').addClass("sticky"); | |
} | |
else{ | |
$('header').removeClass("sticky"); | |
} | |
}); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<nav class="main-menu"> | |
<ul> | |
<li class="current-menu-item"><a href="#">Home</a></li> | |
<li><a href="#">Menu 1</a> | |
<ul> | |
<li><a href="#">Sub Menu 1</a></li> | |
<li><a href="#">Sub Menu 2</a></li> | |
<li><a href="#">Sub Menu 3</a></li> | |
<li><a href="#">Sub Menu 4</a> | |
<ul> |
NewerOlder