This file contains 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="testimonial"> | |
<?php | |
$q = new WP_Query( | |
array('post_type' => array('testimonials'), | |
'post_status' => array('publish'), | |
'orderby' => 'date', | |
'order' => 'ASC', | |
'posts_per_page' => $sitem, | |
'service-category' => $category) | |
); |
This file contains 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
<h1><span>Responsive Navigation Menu</span> Using Only CSS</h1> | |
<header> | |
<section> | |
<a href="https://www.linkedin.com/in/sutharmayur" id="logo" target="_blank">Mayur Suthar</a> | |
<label for="toggle-1" class="toggle-menu"><ul><li></li> <li></li> <li></li></ul></label> | |
<input type="checkbox" id="toggle-1"> | |
<nav> |
This file contains 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
<header class='opened' id='header'> | |
<h1 class='logo' data-title='ICB'></h1> | |
<div class='menu'> | |
<span class='selected icon-dar'>Alfin Media</span> | |
</div> | |
<div class='devices'> | |
<button class='device desk active'></button> | |
<button class='device tablet'></button> | |
<button class='device tablet-land'></button> | |
<button class='device phone'></button> |
This file contains 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="wrap"> | |
<div class="bg"></div> | |
<h1>Take a look around</h1> | |
</div> | |
<!-- Effect inspired by https://codepen.io/supah/pen/RrzREx --> |
This file contains 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
<script> | |
var isNS = (navigator.appName == "Netscape") ? 1 : 0; | |
if(navigator.appName == "Netscape") document.captureEvents(Event.MOUSEDOWN||Event.MOUSEUP); | |
function mischandler(){ | |
return false; | |
} | |
function mousehandler(e){ |
This file contains 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
<!DOCTYPE html> | |
<html> | |
<body> | |
<p>Click on the button to copy</p> | |
<input type="text" value="Hello World" id="myInput"> | |
<button onclick="myFunction()">Copy text</button> | |
<p>The document.execCommand() method is not supported in IE8 and earlier.</p> |
This file contains 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
<!DOCTYPE html> | |
<html> | |
<head> | |
<style> | |
div { | |
-webkit-user-select: none; /* Safari 3.1+ */ | |
-moz-user-select: none; /* Firefox 2+ */ | |
-ms-user-select: none; /* IE 10+ */ | |
user-select: none; /* Standard syntax */ | |
} |
This file contains 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
select::-ms-expand { | |
display: none !important; | |
} | |
select { | |
-webkit-appearance: none; | |
-moz-appearance: none; | |
text-indent: 1px; | |
text-overflow: ''; | |
} |
This file contains 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
::-webkit-input-placeholder { /* Chrome/Opera/Safari */ | |
color: pink; | |
} | |
::-moz-placeholder { /* Firefox 19+ */ | |
color: pink; | |
} | |
:-ms-input-placeholder { /* IE 10+ */ | |
color: pink; | |
} | |
:-moz-placeholder { /* Firefox 18- */ |
This file contains 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
<section class="header_logo"> | |
<div class="container"> | |
<div class="row"> | |
<div class="col-md-6"> | |
<div class="logo"> | |
<a href="index.html"> | |
<img src="assets/images/LOGO.png" alt="logo"> | |
</a> | |
</div> | |
</div> |
OlderNewer