Sunday, 5 August 2018

HTML Scrolling Text code

<marquee behavior="scroll" direction="left">your text goes here</marquee>
your text goes here

Sunday, 30 October 2016

moving text code

<marquee bgcolor="#9E0000"><font color="#FFFFFF">Add Your Text Here</font></marquee>

Friday, 28 October 2016

code stop blogger redirect

<script type="text/javascript">
var blog = document.location.href.toLowerCase();
if (!blog.match(/\.blogspot\.com/)) {
blog = blog.replace(/\.blogspot\..*?\//, ".blogspot.com/ncr/");
window.location.replace(blog);
}
</script>

Monday, 10 October 2016

Thursday, 29 September 2016

Code For Blog Post

<p class="noselect">
  Unselectable text.
</p>

Code For Add CSS

.noselect {
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none;   /* Chrome/Safari/Opera */
  -khtml-user-select: none;    /* Konqueror */
  -moz-user-select: none;      /* Firefox */
  -ms-user-select: none;       /* Internet Explorer/Edge */
  user-select: none;           /* Non-prefixed version, currently
                                  not supported by any browser */
}