Posts

Disable Right Click In Blogger

Sitmap Code

Repository Sitemap is Loading....

wa.me/settings se kya hota hai ?

Image
When you will try to send wa.me/settings to any chat/group of your whatsapp account, suddenly a pop up message will show for both sender and receiver. The message will like that "something wrong activities, or malicious work done" your whatsapp account will crashed continuously.    How to solve it ? Just Open Your whatsapp Account Do not open that chat Just from whatsapp dashboard delete the whole chat of that person who have sent to you. Tutorials Point, We appreciate your attention for this post and eagerly await your response. Thankyou

How to add pop up windows in blogger post ?

Image
You can add this code for showing pop up window on any website.   <style> #pop{ height: auto; width: auto; position: fixed; bottom: 25%; right: 10%; left: 10%; border: 2px solid; padding: 10px; background: #FFFFFF; border-radius: 9px; }   #close{ right:5; top:5; float:right; } </style> <div id="pop"> <button id="close" onclick="document.getElementById('pop').style.display='none'">X</button><br /> Design by Anurag Singh <h2>Powered by theAShub</h2> <h3>Powered by theAShub</h3> <h4>Powered by theAShub</h4> </div>     Tutorials Point, We appreciate your attention for this post and eagerly await your response. Thankyou

Simple Number Count recent post widgets for blogger website

Image
Here's the codes <div class="recentpostarea"> <style type="text/css"> .recentpostarea {list-style-type: none;counter-reset: countposts;} .recentpostarea a {text-decoration: none; color: #000000;} .recentpostarea a:hover {color: #000;} .recentpostarea li:before {background: #000000;float: left;counter-increment: countposts;content: counter(countposts,decimal);z-index: 2;position:relative;font-size: 20px;font-weight: bold;color: #fff; padding: 0px 10px; margin: 15px 5px 0px -6px; border-radius: 100%;} li.r-p-title { padding: 5px 0px;} .r-p-title { font-family: "Avant Garde",Avantgarde,"Century Gothic",CenturyGothic,AppleGothic,sans-serif;} .r-p-title a {text-decoration: none;color: #444;font-weight: bold;font-size: 13px; padding: 2px;} .recent-post-date {padding: 5px 2px 5px 30px; font-size: 11px; color: #999; margin-bottom: 5px;} .r-p-summ { border-left: 1px solid #69B7E2; color: #777; padding: 0px 5px 0px 20px; margin-left: 11px

How to make Quiz using HTML, CSS, JS

Image
How to make Quiz Copy the code and add into your blog post. Add your desired questions in it. Here's the codes <!--Quiz by theAShub--> <script src="https://sharecodepoint.in/sharecodepoint-website-data/quizze-files/jquery-1.9.1.min.js"></script> <script type="text/javascript"> $(document).ready(function() { $('label').click(function() { $('label').removeClass('wrongans'); $(this).addClass('wrongans'); }); }); </script> <style> .scp-quizzes-main{ width:100%; font-family:Verdana, Arial, Helvetica, sans-serif;} .scp-quizzes-data{ padding:10px; margin-top:15px; } pre{ border:2px solid #f5f5f5; padding:10px; overflow-x:scroll;} input[type=radio] { display:none; } input[type=radio] + label { display:inline-block; width:95%; padding:10px; border-radius:40px; border:1px solid #ddd; margin-bottom:10px; cursor:pointer; } input[type=radio] + label:hover{ border:1px solid #000000;

Convert Blog Posts into List View for blogger website

Image
What to do Open Blogger Dashboard Choose a place where you want to add this code Copy below code add Html/JS gadget  Paste the copied code in it <!--Powered by theAShub--> <script type="text/javascript"> function recentpostslist(json) { document.write('<ul>'); for (var i = 0; i < json.feed.entry.length; i++) { for (var j = 0; j < json.feed.entry[i].link.length; j++) { if (json.feed.entry[i].link[j].rel == 'alternate') { break; } } var entryUrl = "'" + json.feed.entry[i].link[j].href + "'";//bs var entryTitle = json.feed.entry[i].title.$t; var item = "<li>" + "<a href="+ entryUrl + '" target="_blank">' + entryTitle + "</a> </li>"; document.write(item); } document.write('</ul>'); } </script> <script src="https://theanuragsinghhub.blogspot.com//feeds/posts/summary