Saturday, 7 October 2017

How to create .jpg/.png link from image

Upload image at http://imgbb.com/

then in embedd URL

then click BBCode full linked

then you will get URL in form [url=http://imgbb.com/][img]http://image.ibb.co/hnM3mG/3.png[/img][/url]


now for that use http://image.ibb.co/hnM3mG/3.png as your .jpg/.png link in your blog template

Friday, 6 October 2017

How Remove Blogger Credite

Way 1: Best way (succesful way)


Search body{
and then before it simply write 

#Attribution1 {display: none;}


Way 2:


 By adding style='visibility: hidden' in the statement having keyword something like  Copyright,or designed etc .



Source:http://www.geeksgyan.com/2016/01/remove-footer-credit-from-blogger-template.html


Way 3


By first searching Attribution 1 by pressing ctrl+f in code area

exactly searching for <b:widget id=’Attribution1′ locked=’true’ title=” type=’Attribution’> 

then Replace the locked=’true’ with locked=’false’ 

source :https://www.vrcworks.net/blog/remove-powered-by-blogger-attribution-widget/


way 4


Search //<![CDATA[

then delete a code written between that keyword

source:http://hackintricks4u.blogspot.in/2015/01/remove-credits-link-in-blog-template.html


Way 5:

want to build your own tablet from sckrach the watch video of Kable Alae
youtube channel part 1 and part 2 

Monday, 2 January 2017

Monday, 22 August 2016

How to Block Copy paste in Blogger

<script type='text/javascript'>
var isCtrl = false;
document.onkeyup=function(e)
{
if(e.which == 17)
isCtrl=false;
}
document.onkeydown=function(e)
{
if(e.which == 17)
isCtrl=true;
if((e.which == 85) || (e.which == 67) &amp;&amp; isCtrl == true)
{
// alert(&#8216;Keyboard shortcuts are cool!&#8217;);
return false;
}
}
var isNS = (navigator.appName == "Netscape") ? 1 : 0;
if(navigator.appName == "Netscape") document.captureEvents(Event.MOUSEDOWN||Event.MOUSEUP);
function mischandler(){
return false;
}
function mousehandler(e){
var myevent = (isNS) ? e : event;
var eventbutton = (isNS) ? myevent.which : myevent.button;
if((eventbutton==2)||(eventbutton==3)) return false;
}
document.oncontextmenu = mischandler;
document.onmousedown = mousehandler;
document.onmouseup = mousehandler;
</script>




<script language=javascript>
<!--

//edit by unwanted


var message="HAVE SOME HUMANITY BUDDY";

///////////////////////////////////
function clickIE4(){
if (event.button==2){
alert(message);
return false;
}
}

function clickNS4(e){
if (document.layers||document.getElementById&&!document.all){
if (e.which==2||e.which==3){
alert(message);
return false;
}
}
}

if (document.layers){
document.captureEvents(Event.MOUSEDOWN);
document.onmousedown=clickNS4;
}
else if (document.all&&!document.getElementById){
document.onmousedown=clickIE4;
}

document.oncontextmenu=new Function("alert(message);return false")

// -->
</script>

<!doctype html>


    html2canvas example
 <script type="text/javascript" src="img/html2canvas.js"></script>
<script language=javascript>
function ieClicked() {
    if (document.all) {
        return false;
    }
}
function firefoxClicked(e) {
    if(document.layers||(document.getElementById&&!document.all)) {
        if (e.which==2||e.which==3) {
            return false;
        }
    }
}
if (document.layers){
    document.captureEvents(Event.MOUSEDOWN);
    document.onmousedown=firefoxClicked;
}else{
    document.onmouseup=firefoxClicked;
    document.oncontextmenu=ieClicked;
}
document.oncontextmenu=new Function("return false")
function disableselect(e){
    return false
    }
    function reEnable(){
    return true
    }
    document.onselectstart=new Function ("return false")
    if (window.sidebar){
    document.onmousedown=disableselect
    document.onclick=reEnable
    }
</script>
    <style>
    canvas{border:1px solid #222}
    </style>     


   <a class="upload"  >Upload to Imgur</a>  
   <a href="#" download="canvasexport.pdf" onclick="window.print()" ><img src="images/print-icon.png" alt="Print" width="16" height="16" /></a>

   <a href="#" id="download" download="diversio.pdf" onclick="printImg();"> 
   <img src="images/print-icon.png" alt="Print" width="16" height="16" />
   </a> 

    <h2>this is <b>bold</b> <span style="color:red">red</span></h2>   
    <p>  .
    </p>




</!doctype>