Articles by "Coding"
Showing posts with label Coding. Show all posts
Droidadda is one of worlds best online blogging portal where latest trending articles on Android,Blogging,Seo,Gadgets,Tricks,etc are daily published.

Hello friends, in this tutorial I will like to show you how you can create a really cool animated CSS Animated Search Box for your websites and blogs.

Many on you had heard about cool CSS widgets for websites and even you've tested them once. As far as i've concerned, lots of users are opted on Blogging today. Most of them are using Wordpress and Blogger for posting various articles on the internet. This is really good example of social media sharing.

To start off, you will need the following tools:

  • CSS3 for styling and animations
  • HTML for the structure
  • JavaScript and jQuery as the manager of our demonstration.

How To Add Animated Search Box on your Blog?

Follow the steps mentioned below properly to add this beautiful search box widget to your blog. Both Wordpress and Blogger users can add this widget on their blog as well as other users such as Joomla,Drupal and other sources.

    Part 1 : HTML

    First of all, we have a container, div, with “search-wrapper” class. This will hold and center our search box.

    The first children element of our primary container is called .input-holder. This one has a fixed width in our main container .search-wrapper. The .input-holder contains the text input and the search button.

    Remember:

    • The text input is positioned absolute and stretched on the full length of his “parent”
    • The search button has the CSS float property with the value of right, in order to keep it on the right side of our container while animating it.
    The second children element of our div is called .close ,and it acts as a container for the close icon, created using the CSS pseudo classes ::before and ::after.
    <div class="search-wrapper">
    <div class="input-holder">
    <input class="search-input" placeholder="Type to search" type="text" />
            <button class="search-icon" onclick="searchToggle(this, event);"></button>
        </div>
    <span class="close" onclick="searchToggle(this, event);"></span>
    </div>

    Part 2 : CSS

    Note: In order to have a light code structure and easy to read article, I will not add the vendors prefixes for any CSS property. You can easily find the complete source on the DEMO page, or in the DOWNLOAD link.

    Since our demonstration is about animating with CSS, I will insist on explaining the CSS animation/ transition techniques, and not on the casual CSS properties. Now, let’s take a close look at the way I centered the main wrapper, .search-wrapper, and talk about that :
    .search-wrapper {
        position: absolute;
        transform: translate(-50%, -50%);
        top:50%;
        left:50%;
    }
    .search-wrapper.active {}
    

    First of all, to center an element in the middle of the document, you’ll need to use position:absolute , and set the top and left side to 50%. You have the result of that in bullet 1 in the picture below.

    Next, you will see that the top-left side of the element is positioned in the middle of the document, but that’s not exactly what we want. So by using CSS3 property transform:translate(x,y) , where “x” and “y” are -50%, you will be able to subtract 50% of your current element’s width and height from the current position. See bullet 2!

    Note: Before having CSS transform at our disposal, we used to calculate that offset with JavaScript, and you know how annoying that was, right, developers?

    Bullet Position

    Now let’s see . input-holder :
    .search-wrapper .input-holder {    
        height: 70px;
        width:70px;
        overflow: hidden;
        background: rgba(255,255,255,0);
        border-radius:6px;
        position: relative;
        transition: all 0.3s ease-in-out;
    }
    .search-wrapper.active .input-holder {
        width:450px;
        border-radius: 50px;
        background: rgba(0,0,0,0.5);
        transition: all .5s cubic-bezier(0.000, 0.105, 0.035, 1.570);
    }
    

    The .input-holder has 2 different transitions, one using the ease-in-out predefined timing function (that applies when you close the search box), and the second one using cubic-bezier timing function (that applies when you expand it).

    .input-holder has 2 values for width, one for the closed state, and another for the expanded state. Same thing with the border-radius and background properties.

    Moving forward with .input-holder, we have the text input (.search-input) and the search button (.search-icon):
    .search-wrapper .input-holder .search-input {
        width:100%;
        height: 50px;
        padding:0px 70px 0 20px;
        opacity: 0;
        position: absolute;
        top:0px;
        left:0px;
        background: transparent;
        box-sizing: border-box;
        border:none;
        outline:none;
        font-family:"Open Sans", Arial, Verdana;
        font-size: 16px;
        font-weight: 400;
        line-height: 20px;
        color:#FFF;
        transform: translate(0, 60px);
        transition: all .3s cubic-bezier(0.000, 0.105, 0.035, 1.570);
        transition-delay: 0.3s;
    }
    .search-wrapper.active .input-holder .search-input {
        opacity: 1;
        transform: translate(0, 10px);
    }
    .search-wrapper .input-holder .search-icon {
        width:70px;
        height:70px;
        border:none;
        border-radius:6px;
        background: #FFF;
        padding:0px;
        outline:none;
        position: relative;
        z-index: 2;
        float:right;
        cursor: pointer;
        transition: all 0.3s ease-in-out;
    }
    .search-wrapper.active .input-holder .search-icon {
        width: 50px;
        height:50px;
        margin: 10px;
        border-radius: 30px;
    }
    .search-wrapper .input-holder .search-icon span {
        width:22px;
        height:22px;
        display: inline-block;
        vertical-align: middle;
        position:relative;
        transform: rotate(45deg);
        transition: all .4s cubic-bezier(0.650, -0.600, 0.240, 1.650);
    }
    .search-wrapper.active .input-holder .search-icon span {
        transform: rotate(-45deg);
    }
    .search-wrapper .input-holder .search-icon span::before,
    .search-wrapper .input-holder .search-icon span::after {
        position: absolute; 
        content:'';
    }
    .search-wrapper .input-holder .search-icon span::before {
        width: 4px;
        height: 11px;
        left: 9px;
        top: 18px;
        border-radius: 2px;
        background: #FE5F55;
    }
    .search-wrapper .input-holder .search-icon span::after {
        width: 14px;
        height: 14px;
        left: 0px;
        top: 0px;
        border-radius: 16px;
        border: 4px solid #FE5F55;
    }
    .search-wrapper .close {
        position: absolute;
        z-index: 1;
        top:24px;
        right:20px;
        width:25px;
        height:25px;
        cursor: pointer;
        transform: rotate(-180deg);
        transition: all .3s cubic-bezier(0.285, -0.450, 0.935, 0.110);
        transition-delay: 0.2s;
    }
    .search-wrapper.active .close {
        right:-50px;
        transform: rotate(45deg);
        transition: all .6s cubic-bezier(0.000, 0.105, 0.035, 1.570);
        transition-delay: 0.5s;
    }
    .search-wrapper .close::before, .search-wrapper .close::after {
        position:absolute;
        content:'';
        background: #FE5F55;
        border-radius: 2px;
    }
    .search-wrapper .close::before {
        width: 5px;
        height: 25px;
        left: 10px;
        top: 0px;
    }
    .search-wrapper .close::after {
        width: 25px;
        height: 5px;
        left: 0px;
        top: 10px;
    }
    

    As mentioned above in the HTML part of this tutorial, the .search-input has position:absolute, stretched at 100%. This means that it takes the value of his parent.

    For the animation, we have 2 states:

    When the .input-holder closes, we apply a few CSS3 properties on .search-input : transform:translate (0,60px), this moves the search input on y axis (bottom) with 60 pixels opacity:0 (self explanatory) transition-delay: 3s, this allows delaying the transition with 3 milliseconds, to have a more interactive animation
    the last thing we need to do is to apply a transition that has a cubic-bezier timing function with a 3 milliseconds duration, transition:all.3s cubic-bezier (0.000,0.105,0.035,1.570)
    When the .input-holder opens, we switch the opacity from 0 to 1 and transform from translate (0,60px) to translate (0,10px). As for the transition property, it’s inherited from the previous state.
    The .search-icon and .close use the same methods for the transition as described earlier, with a few differences, such as using the transition property in conjunction with transform:rotate (x deg). This allows us to rotate our element around its own center.

    In the HTML part of our tutorial, I’ve mentioned how some of the icons are created with CSS pseudo classes, ::before and ::after. When using before and after pseudo classes, you have the possibility of inserting content before or after the content of the selected element. You can create a lot of cool stuff, such as icons, but we’ll share more info about this in future articles.

    To close this section, I want to let you know that I’ve used a lot of transitions to achieve the desired animations, and a lot of cubic-bezier. If you want to get the best animations using transitions, my advice would be to check out some cubic-bezier documentation and tutorials.

    Part 3: JavaScript

    Before doing anything else, you will need to include jQuery for this to work. Notice that our main wrapper, .search-wrapper has a .active class attached in the CSS. We’ll use this class for toggling between the states of the main wrapper child.

    The searchToggle() function adds or removes the .active class from .search-wrapper in a toggle like fashion.
    <script type="text/javascript">
    function searchToggle(obj, evt){
        var container = $(obj).closest('.search-wrapper');
            if(!container.hasClass('active')){
                container.addClass('active');
                evt.preventDefault();
            }
            else if(container.hasClass('active') &&
            $(obj).closest('.input-holder').length == 0){
                container.removeClass('active');
                // clear input
                container.find('.search-input').val('');
            }
    }</script>
    

    You can also download the code for this search box widget. Just tap on the download button below to proceed.

    Final Words

    So this was the article on Animated CSS JQuery Search Box For Blogger & Wordpress. I'm sure it will clear all your consequences about this article on your mind. Now you have known all the facts about Animated CSS-JQuery Filter clearly. I hope you love this article.

    Share this article with your friends and do let them know about this amazing article and I hope they will love it and love to install it on their device. Thank you for visiting Droidadda and keep visiting for more tips and tricks like this and I will meet you in the next article. Till then stay peace.
    Droidadda is one of worlds best online blogging portal where latest trending articles on Android,Blogging,Seo,Gadgets,Tricks,etc are daily published.
    Animated CSS Filter For Websites

    Hello friends, in this tutorial I will like to show you how you can create a really cool animated CSS Filter for your websites and blogs.

    Many on you had heard about cool CSS widgets for websites and even you've tested them once. As far as i've concerned, lots of users are opted on Blogging today. Most of them are using Wordpress and Blogger for posting various articles on the internet. This is really good example of social media sharing.

    But do you ever wonder that your website or blog really looks professional? If you haven't heard or wonder then this is the time, you can make it on your own. Today i'll help you on creating beautiful Filter for websites and blogs. you can implement this on your page and use it. this filter will act like a drop down menu inside a container.
    Wanna learn more? Lets do this out in practical...!!

    To start off, you will need the following tools:

    • CSS3 for styling and animations
    • HTML for the structure
    • JavaScript and jQuery as the manager of our demonstration.

    See The Code Below


    See the Pen Animated filter by Sunmughan Swamy (@sunmughan) on CodePen.

    Check This Video

    Animated CSS-JQuery Filter For Websites & Blogs

     That's all. You can now refresh your page and see the new widget on your website.

    Final Words

    So this was the article on Animated CSS-JQuery Filter For Websites & Blogs. I'm sure it will clear all your consequences about this article on your mind. Now you have known all the facts about Animated CSS-JQuery Filter clearly. I hope you love this article.

    Share this article with your friends and do let them know about this amazing article and I hope they will love it and love to install it on their device. Thank you for visiting Droidadda and keep visiting for more tips and tricks like this and I will meet you in the next article. Till then stay peace.
    Droidadda is one of worlds best online blogging portal where latest trending articles on Android,Blogging,Seo,Gadgets,Tricks,etc are daily published.

    Hey Fellas, My name is Sunmughan Swamy & i'm back again with an amazing article for bloggers and HTML Webpage users. Today i would like to share an article on new below post subscription box for bloggers. 

    I have recieved requests from many bloggers to post on a newly designed Email Subscription Box for Bloggers. So atlast i got a new one from a blogger template. I have collected all the required codes (CSS & HTML) and experimented a while to test it out whether its working or not. and Finally i got it working and is ready to serve you 😊
    So, What are you waiting for? Lets read the article now :p

      How To Add Subscription Box ?

      I will provide you all the necessary steps to add this subscription box in your blogger template to display it below your blog post.

      Follow the below steps to add this on your blogger template:-
      • Step 1: Open Blogger and  login to your account.
      • Step 2: On the Dashboard Click on Theme.
      • Step 3: On the Theme click on Edit HTML.
      • Step 4: Now search for this code <data:post.body/> and paste the below code just above the code you searched.
      <div class="subscribe-widget" id="subwid" style="display: block;">
      <div class="form-promo">
      <i class="fa fa-envelope"></i>
      <h3>Wanna get our awesome news?</h3>
      <h4>Sign up and get the best viral stories straight into your inbox!</h4>
      </div>
      <div class="tl-rssform">
      <form action="http://feedburner.google.com/fb/a/mailverify" method="post" onsubmit="window.open('http://feedburner.google.com/fb/a/mailverify?uri=feedburnerUserName', 'popupwindow', 'scrollbars=yes,width=550,height=520');return true" target="popupwindow">
      <input class="email-field" name="email" placeholder="Enter your email address..." type="text">
      <input name="uri" type="hidden" value="feedburnerUserName">
      <input name="loc" type="hidden" value="en_US">
      <input class="email-button" type="submit" value="Subscribe Now">
      </form>
      </div>
      <div class="form-policy"><p><span>*</span>we won't spam you</p></div>
      </div>
      
      • Step 5: Now search for this code ]]></b:skin< and paste the below code just above it.
      .subscribe-widget{background:#222;color:#fff;position:relative;overflow:hidden;border:1px solid #eee;text-align:center;margin:25px 0;padding:25px 0;}
      .form-promo i{font-size:50px;margin-bottom:25px;}
      .form-promo h3{text-transform:uppercase;margin:0;}
      .form-promo h4{font-weight:400;font-size:17px;margin:0 0 15px;}
      .form-policy p{font-size:12px;margin:10px 0 0;}
      .form-policy p span{color:red;padding-right:5px;}
      input.email-field{font:normal normal 14px 'Prompt', sans-serif;display:inline-block;width:50%;color:#ccc;background:none!important;border:1px solid #f5f5f5!important;text-indent:20px;outline:none!important;height:50px;padding:10px 0!important;}
       input.email-button{font:normal normal 14px 'Prompt', sans-serif;font-weight:500;height:50px;cursor:pointer;border:1px solid #ffcc33;background:#ffcc33;outline:none;transition:all .3s ease-in-out;-moz-transition:all .3s ease-in-out;-webkit-transition:all .3s ease-in-out;padding:0 15px;}
       input.email-button:hover{background:#333;color:#fff;}
      • Step 6: Now search for this line @media only screen and (max-width:767px) { and paste the below code after this code begins.
      .subscribe-widget{padding:25px;}
      • Step 7: Now search for this line @media only screen and (max-width:479px) { and paste the below code after this code begins.
      .form-promo h3{font-size:14px;}
      • Step 8: Now save your "Template". Congratulations! you have successfully added this subscription box below your blog post ♥

      Final Words

      This was the article on Animated Delete Button with Confirmation. I hope you'll like this article. If you need any extra help completing this guide, then you should tell me in comments.
      Also Read: Pure CSS Colourful Progress Bar Line for Blogs&Forums
      Thankyou for visiting Droidadda. For fast access to our service Bookmark & Subscribe us now. Share this article with your friends and show how they can customize their Webpage. If any issues then feel free to comment below. Peace out.
      Droidadda is one of worlds best online blogging portal where latest trending articles on Android,Blogging,Seo,Gadgets,Tricks,etc are daily published.

      Hello fellas, once again i'm back here with an amazing webmaster tip for you all. This time we'll discuss about Animation. Yes you're hearing right! Finally i have my first tutorial on Animation Effect. Today you will learn how to create an animated delete button with confirmation on your webpage. This is a very responsive creation and also it looks pretty amazing on websites. So what are you waiting for? Lets do this out 😋

        How To Create This Delete Button

        To create this beautiful animated delete button with confirmation along with delete and check icons you have to follow the instructions to build this button using several web design codes. i.e HTML,JavaScript,JavaQuery which are given in the codepen window below. All you have to do is to copy these codes in their order and put them on your website.

        Tips For Newbee's

        If you don't know anything about Web Designing (i.e HTML,JavaScript, JavaQuery, Ajax,Bootstrap,CSS) or you are learning then follow the guides given by me to add this Delete Button on your webpage/website
        Also Read: Download Ultimate Courses For Learning Web Designing
        • Step 1: Login to your web hosting (i.e Blogger/Joomla/Wordpress/Drupal). Now in this case i'm using my Wordpress hosting.
        • Step 2: Now Your Wordpress Dashboard will come. Just click on Appearence & then click Editor.
        • Step 3: Now your wepsite files will be shown in list along with code editor. See screenshot below:
        • Step 4: Now open your style.css and add the Following css code on the end of file.
        // Setting up
        
        $bg: #313841; $red: #F34541; $black: #1D242B; $green: #38B87C; $blue: #2492FF; body { background: $bg; color: #fff; font-family: "Roboto", sans-serif; font-size: 13px; } .centerMe { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); }
        
        // Dribbble
        
        button {
         display: flex;
         cursor: pointer;
         border: 0;
         background: transparent;
         outline: 0;
         overflow: hidden;
         .icon {
          position: relative;
          background: $black;
          line-height: 30px;
          width: 30px;
          height: 30px;
          text-align: center;
          color: #fff;
          font-size: 18px;
          transition: .2s color;
          border-radius: 2px;
          .fa {
           width: 30px;
           transition: .2s all;
          }
          .fa-check { color: $green; }
          .fa-question { color: $blue; }
          &:after {
           content: ' ';
           display: block;
           position: absolute;
           width: 5px;
           height: 5px;
           transform: rotate(45deg);
           background: $black;
           top: 12.5px;
           right: 1px;
           transition: .2s right;
           z-index: 1;
          }
         }
         .text {
          position: relative;
          width: 0;
          height: 30px;
          overflow: hidden;
          font-family: "Roboto", sans-serif;
          background: $red;
          text-align: center;
          line-height: 30px;
          color: #fff;
          font-weight: 300;
          transition: .2s all;
          border-top-right-radius: 2px;
          border-bottom-right-radius: 2px;
          span {
           width: 100%;
           opacity: 0;
           position: absolute;
           top: -30px;
           left: 50%;
           transform: translateX(-50%);
           transition: .3s all;
          }
         }
         &:hover {
          .icon {
           color: $red;
           border-radius: 0;
           border-top-left-radius: 2px;
           border-bottom-left-radius: 2px;
           &:after { right: -2px; }
          }
          .text {
           width: 120px;
           span { opacity: 1; top: 0; }
          }
         }
         &.confirm {
          .icon {
           border-radius: 0;
           border-top-left-radius: 2px;
           border-bottom-left-radius: 2px;
           .fa { transform: translateY(-30px); }
           &:after { right: -2px }
          }
          .text {
           background: $blue;
           width: 120px;
           span { opacity: 1; top: 0; }
          }
         }
         &.done {
          .icon {
           border-radius: 0;
           border-top-left-radius: 2px;
           border-bottom-left-radius: 2px;
           .fa { transform: translateY(-60px); }
           &:after { right: -2px }
          }
          .text {
           background: $green;
           width: 120px;
           span { opacity: 1; top: 0; }
          }
         }
        }
        
        @keyframes fadeInZoom {
         0% { opacity: 0; transform: scale(.7); }
         100% { opacity: 1; transform: scale(1); }
        }
        • Step 5: Now open your. footer.php and add these codes at the end of file.
        <script type="text/javascript">
        // Design / Dribbble by:
        // Adam Whitcroft
        // URL: https://dribbble.com/shots/969445-The-Double-Delete
        
        $("button").click(function(){
         if($(this).hasClass("confirm")){
          $(this).addClass("done");
          $("span").text("Deleted");
         } else {
          $(this).addClass("confirm");
          $("span").text("Are you sure?");
         }
        });
        
        // Reset
        $("button").on('mouseout', function(){
         if($(this).hasClass("confirm") || $(this).hasClass("done")){
          setTimeout(function(){
           $("button").removeClass("confirm").removeClass("done");
           $("span").text("Delete");
          }, 3000);
         }
        });
        </script>
        • Step 6: Now whenever or wherever you want to add this Animated Delete Button, just place the below code and see the result
        %button.centerMe
         .icon
          %i.fa.fa-trash-o
          %i.fa.fa-question
          %i.fa.fa-check
         .text
          %span Delete
        

        Now you have successfully added Animated Delete Button with Confirmation on your website. 😊

        Final Words

        This was the article on Animated Delete Button with Confirmation. I hope you'll like this article. If you need any extra help completing this guide, then you should tell me in comments.
        Also Read: Pure CSS Colourful Progress Bar Line for Blogs&Forums
        Thankyou for visiting Droidadda. For fast access to our service Bookmark & Subscribe us now. Share this article with your friends and show how they can customize their Webpage. If any issues then feel free to comment below. Peace out.
        Droidadda is one of worlds best online blogging portal where latest trending articles on Android,Blogging,Seo,Gadgets,Tricks,etc are daily published.
        Hello Guys, today after a long time am back here with a much useful article for Bloggers. Sorry for my absence, i am too busy with my projects now. So now coming to the point, i've decided to share an inportant graphical user interface loding bar codings for all bloggers. You may have seen this bar in Youtube many times. But this is better then youtube loading bas because of its multicolour transparency.
        Lets read it out in details.. 😉

        What is Progress bar?

        A progress bar is a graphical control element used to visualize the progression of an extended computer operation, such as a download, file transfer, or installation. Sometimes, the graphic is accompanied by a textual representation of the progress in a percent format. Below are some examples of Progress bar images: 

        Circular Progress Bar

        Flat Horizontal Progress Bar


        Only visible to Desktop users

        How To Add Progress Bar in Your Blogs?

        Step 1: Login to Blogger using your Google Account.
        Step 2: Click on Theme
        Step 3: Click on Edit HTML
        Step 4: Now search this </head> and paste the below code above it.

        Step 5: Now Copy the below Javascript code and paste it above </body>

        Step 6: Now copy the below code and paste it below </nav>

        Step 7: Save your Theme now and see the changes!

        Final Words

        So this was the article on Youtube like colourful Progress Bar For Blogs and Websites. I hope you love this article. Share this article with your friends and do let them know about this amazing blogging tips and I hope they will love it and love to install it on their Blogs.
        Thank you for visiting Droidadda and keep visiting for more tips and tricks like this and I will meet you in the next article. Till then stay peace.
        Droidadda is one of worlds best online blogging portal where latest trending articles on Android,Blogging,Seo,Gadgets,Tricks,etc are daily published.

        Introduction

        Today, we use computer almost in every field. Computer is also combination and hardware and software. Most basic software that is necessary to run a computer is operating system. Mostly people use Microsoft Windows operating system. Windows is rather a powerful GUI based operating system which is easy to operate. We can install different application software’s on windows according to our need including MS office, Adobe reader, music players, games and notepad. As we can use notepad for multiple task like coding editor, dairy and etc for more you need to check all notepad tips and tricks. But an average users who have basic knowledge of computer don’t know all options of windows. Some task in Windows is very difficult like get IP address of a system, resolve Domain name to IP address, know active internet connection etc. But in DOS operating system, with the help one command we can do these task. Dos is the first command based Microsoft operating system. We can do many task in an easy way with the help of Dos but we only need to know about these commands. If you do not know about these command then this article is for you. In this article we provide you a list of best CMD tricks and hacks.

        List of Best CMD Tricks

        1. Creating Con Or Non Deletable Folder With CMD.

        In Windows you can not create a folder with name con or can not rename a folder to con. This is because it is a variable name used by Windows programming. Other variable name includes lp1, lpt2, lpt3 up to lpt9, aux. So Windows can not allow you to make a folder with this name. But with the help of dos command we can create a folder with such name. So here how to implement this amazing cmd trick.
        • Press Windows button and run CMD as administrator.
        • Type the command with this syntax “drive name: “. This command allow you to enter in the drive in which you want to create a folder. For example d: and press enter.
        • Now enter the following command.
        md con and press enter.
        • After that your folder is created in specified drive.


        Deleting con Folder.
        You can not delete such folder manually by using Windows. To delete this folder type the following command in the command prompt.
        rd con
        Also Read: How To Fix Error 651 in Windows 7/8/10 [8 Methods]

        2. Shut Down Computer With Commands.

        Best in all other cmd tricks and hacks. You can also shut down your computer by using command prompt. Type the following command in command prompt.
        • For Shut Down
        shutdown -s
        • For Restarting
        shutdown -r
        • For Logoff
        shutdown -l
        Note: -s -r -l parameter tells the computer to shut down, restart, log off

        3. Shutdown Computer In Specified Time With CMD.

        You can also shut down your computer in specified time using command prompt. If you want to shut down your computer after two minutes type the following command.
        shutdown -s -t 120


        4. Print Message Before Shut Down.

        We can also print some message before shut down a computer. Some users can use it as a reminder which remind you a task at the time of shut down. We can do this by using the following command.
        shutdown -s -t 500 -c “My message.”
        We can replace my message with our message we want to display.

        5. Assoc CMD Command.

        There are many programs installed in our computer. Each program has its own file extension. It is difficult to remember each file extension. If you want to know which file is associated with which program then we can do this by typing the following command
        Assoc
        This command provide you a list of programs and their associated files.

        6. Hide A Folder With CMD Command.

        We can play some interesting tricks with command prompt. Hiding a folder is one of them. By hiding a folder you can also save your data from other users. You can do this by typing the following command.
        attrib +s +h D:ABC
        Where ABC is the name of directory we want to hide.



        Also Read: Windows Repair v3.9.17 Pro Portable is Here!

        Unhide The Folder.

        If we can also unhide the hidden folder using command prompt. To unhide the folder type the following command.
        attrib -s -h D:ABC

        7. IP Related CMD Command.

        ipconfig is of the most useful command to see the IP address, Defult gateway and subnet mask. This command is related to networking and is most important for troubleshooting the problems related to TCP/IP.
        • To view Subnet Mask and IP Address use.
        ipconfig
        • To view TCP/IP related Information use.
        ipconfig/all
        • To view DNS cache use.
        ipconfig/displaydns
        • To delete the local cache of DNS use.
        ipconfig/flushdns

        8. Net Related Commands.

        Net is a powerful cmd tool which is used to see the stat of network. This command provide information about active connection. This command is used to view or update network settings.

        It is used to view only the services that are started using the following versions of this command
        1. net stop server ( when the server is currently not running any service).
        2. net start server (when the server is being starting a service).
        3. net start (This command is used to check the services that are currently running).
        4. For connecting to shared network devices use the following command:
        • net use m:sharedservername (for connecting to share network drives).
        • net use m:sharedservername/delete (for disconnecting to share network drives).

        9. Netstat CMD Command.

        Netstat command is an important tool when you want to know about who is establishing a connection with your computer. The output of this command provides you the information about all active connection and listening ports. we can view Ethernet statics and resolve connecting host IP address to a fully qualified domain name. You can use the Netstat command with following attributes :
        1. -a (display all connection).
        2. -n (sorts connection in numerical order).
        3. -b (display executable name. that is browser name).

        10. Nslookup CMD Command.

        When we use internet , Domain name server resolve the Domain names to IP addresses so we do not need to remember the IP addresses. But in case of troubleshooting we can rather get the IP address of particular website using this command.
        Hence, the syntax is nslookup google.com

        11. Get a List Of PC Drivers.

        Another amazing in all cmd tricks by using it we can get a complete list of all drivers installed on your PC along with their details. Just type “driverquery” in the Command Prompt and press Enter to see list of all drivers installed on your PC along with their details.

        12. Command Prompt Color Change.

        We have seen Command Prompt with a black screen and white font since forever. Because it is the default theme. What most users do not know is that colors in command prompt can be easily changed. So here most wanted in all CMD tricks. To do so, right-click at the top corners of Command Prompt, then select “Properties” from the menu. In the properties, click on “Colors” tab and you will find all the options to change color of both text and background.

        13. Star Wars IV Trick.

        In this non productive yet awesome trick, we will tell you how to watch star wars. Well it won’t be an HD version but the ASCII coded movie is still very enjoyable. To watch the movie, open Command Prompt, then enter this command “telnet towel.blinkenlights.nl” and hit Enter. Make sure you have telnet enabled on your PC. to know more, click here.

        14. Create Your Own WiFi Hotspot.

        Due to android phones, we are used to using Wifi hotspots. therefore , we can create a Wifi hotspot using our laptop or PC with this simple CMD trick. You can rather use this trick to share your wireless dongle internet connection with other devices.

        Enter the following command to enable Wi-Fi Hotspot.
        netsh wlan set hostednetwork mode=allow ssid=Hotspotname key=password
        Then, to start Hotspot, enter :
        netsh wlan start hostednetwork
        As well as to stop hotspot, enter :
        netsh wlan stop hostednetwork

        Watch YouTube Videos On CMD Tricks


        Also Read These Stories:

        Final Words

        In conclusion, these are some best cmd tricks and hacks. We hope you like them all and find them working. In case you still face any problem or you know cmd tricks which are missing let us know and we will update it. For more related articles in future please subscribe us now !
        Droidadda is one of worlds best online blogging portal where latest trending articles on Android,Blogging,Seo,Gadgets,Tricks,etc are daily published.
         
        Hello Everyone ! Once again i am here to share an awesome Blogging Tips with you all. Please check this out below.
         
        These are themes for HTML-based sitemap page provided by howbloggerz only and will not work for any other sitemap.

        How to Add Sitemap Page in blogger - by Droidadda

        • Format - Label based
        • Design - SEQL
        • Responsive
        • Easy custom columns
        • No hidden script

        
        
        <link href="https://fonts.googleapis.com/css?family=Lato|Montserrat" rel="stylesheet">
        <style type="text/css">
            .post-archive {
                width: 100%;
                padding: 20px 0;
                font-family: "Lato", sans-serif;
            }
           
            .post-archive h4 {
                border-bottom: 2px solid #E3E3E3;
                color: #333333;
                font-size: 20px;
                margin: 0 0 10px 2px;
                padding: 0 0 10px;
                font-family: "Montserrat", sans-serif;
                font-weight: 700;
            }
           
            .ct-columns {
                -moz-column-count: 2;
                -moz-column-gap: 20px;
                -moz-column-rule: none;
                -webkit-column-count: 2;
                -webkit-column-gap: 20px;
                -webkit-column-rule: none;
                column-count: 2;
                column-gap: 20px;
                column-rule: none;
            }
           
            .ct-columns p {
                padding: 5px 0px;
                -moz-column-break-inside: avoid;
                -webkit-column-break-inside: avoid;
                -o-column-break-inside: avoid;
                -ms-column-break-inside: avoid;
                column-break-inside: avoid;
                display: inline-block;
                width: 100%;
            }
           
            .ct-columns p a {
                background: #242424;
                color: #fff;
                display: block;
                border: 2px solid #000;
                font-size: 14px;
                line-height: normal;
                border-radius: 5px;
                padding: 10px 15px;
                -webkit-transition: all .25s ease-in-out;
                -moz-transition: all .25s ease-in-out;
                -o-transition: all .25s ease-in-out;
                transition: all .25s ease-in-out;
            }
           
            .ct-columns p a:hover {
                background: #fff;
                color: #000;
                text-decoration: none;
            }
           
            .ct-columns p a span {
                color: rgb(255, 0, 0);
            }
           
            @media screen and (max-width: 768px) {
                .ct-columns {
                    -moz-column-count: 2;
                    -moz-column-gap: 10px;
                    -moz-column-rule: none;
                    -webkit-column-count: 2;
                    -webkit-column-gap: 10px;
                    -webkit-column-rule: none;
                    column-count: 2;
                    column-gap: 10px;
                    column-rule: none;
                }
            }
           
            @media screen and (max-width: 550px) {
                .ct-columns {
                    -moz-column-count: 1;
                    -moz-column-gap: 0px;
                    -moz-column-rule: none;
                    -webkit-column-count: 1;
                    -webkit-column-gap: 0px;
                    -webkit-column-rule: none;
                    column-count: 1;
                    column-gap: 0px;
                    column-rule: none;
                }
            }
        </style>
        
        
        
        
        <link href="https://fonts.googleapis.com/css?family=Lato" rel="stylesheet">
        <style type="text/css">
            .post-archive {
                width: 100%;
                padding: 20px 0;
                font-family: "Lato", sans-serif;
            }
           
            .post-archive h4 {
                border-bottom: 1px solid #EAEAEA;
                color: #333333;
                font-size: 20px;
                margin: 0 0 10px 2px;
                padding: 0px 10px 10px;
            }
           
            .ct-columns {
                -moz-column-count: 2;
                -moz-column-gap: 20px;
                -moz-column-rule: none;
                -webkit-column-count: 2;
                -webkit-column-gap: 20px;
                -webkit-column-rule: none;
                column-count: 2;
                column-gap: 20px;
                column-rule: none;
            }
           
            .ct-columns p {
                padding: 0px;
                -moz-column-break-inside: avoid;
                -webkit-column-break-inside: avoid;
                -o-column-break-inside: avoid;
                -ms-column-break-inside: avoid;
                column-break-inside: avoid;
                display: inline-block;
                width: 100%;
            }
           
            .ct-columns p a {
                color: #0A12CE;
                display: block;
                font-size: 14px;
                line-height: normal;
                padding: 0px 15px;
            }
           
            .ct-columns p a:hover {
                color: #888CDD;
            }
           
            .ct-columns p a span {
                color: rgb(255, 0, 0);
            }
           
            @media screen and (max-width: 768px) {
                .ct-columns {
                    -moz-column-count: 2;
                    -moz-column-gap: 10px;
                    -moz-column-rule: none;
                    -webkit-column-count: 2;
                    -webkit-column-gap: 10px;
                    -webkit-column-rule: none;
                    column-count: 2;
                    column-gap: 10px;
                    column-rule: none;
                }
            }
           
            @media screen and (max-width: 550px) {
                .ct-columns {
                    -moz-column-count: 1;
                    -moz-column-gap: 0px;
                    -moz-column-rule: none;
                    -webkit-column-count: 1;
                    -webkit-column-gap: 0px;
                    -webkit-column-rule: none;
                    column-count: 1;
                    column-gap: 0px;
                    column-rule: none;
                }
            }
        </style>
        
        
         

        
        <link href="https://fonts.googleapis.com/css?family=Didact+Gothic|Exo" rel="stylesheet">
        <style type="text/css">
            .post-archive {
                width: 100%;
                padding: 20px 0;
                font-family: 'Didact Gothic', sans-serif
            }
           
            .post-archive h4 {
                border-left: 5px solid #D342DD;
                color: #333333;
                font-size: 20px;
                margin: 0 0 10px 2px;
                padding: 5px 10px;
                font-family: 'Exo', sans-serif;
                font-weight: 700;
                box-shadow: 0 0 5px #64446666;
                border-radius: 5px;
            }
           
            .ct-columns {
                -moz-column-count: 2;
                -moz-column-gap: 20px;
                -moz-column-rule: none;
                -webkit-column-count: 2;
                -webkit-column-gap: 20px;
                -webkit-column-rule: none;
                column-count: 2;
                column-gap: 20px;
                column-rule: none;
            }
           
            .ct-columns p {
                padding: 5px 0px;
                -moz-column-break-inside: avoid;
                -webkit-column-break-inside: avoid;
                -o-column-break-inside: avoid;
                -ms-column-break-inside: avoid;
                column-break-inside: avoid;
                display: inline-block;
                width: 100%;
            }
           
            .ct-columns p a {
                background: #fff;
                color: #F568AD;
                display: block;
                border: 1px solid #C9AFCB;
                font-size: 15px;
                line-height: normal;
                border-radius: 0 3px 0;
                padding: 10px 15px;
                -webkit-transition: all .25s ease-in-out;
                -moz-transition: all .25s ease-in-out;
                -o-transition: all .25s ease-in-out;
                transition: all .25s ease-in-out;
                box-shadow: 5px 5px #F0EAED;
            }
           
            .ct-columns p a:hover {
                background: #fff;
                color: #D034E7;
                text-decoration: none;
            }
           
            .ct-columns p a span {
                color: rgb(231, 0, 255);
            }
           
            @media screen and (max-width: 768px) {
                .ct-columns {
                    -moz-column-count: 2;
                    -moz-column-gap: 10px;
                    -moz-column-rule: none;
                    -webkit-column-count: 2;
                    -webkit-column-gap: 10px;
                    -webkit-column-rule: none;
                    column-count: 2;
                    column-gap: 10px;
                    column-rule: none;
                }
            }
           
            @media screen and (max-width: 550px) {
                .ct-columns {
                    -moz-column-count: 1;
                    -moz-column-gap: 0px;
                    -moz-column-rule: none;
                    -webkit-column-count: 1;
                    -webkit-column-gap: 0px;
                    -webkit-column-rule: none;
                    column-count: 1;
                    column-gap: 0px;
                    column-rule: none;
                }
            }
        </style>
        

         


        
        <link href="https://fonts.googleapis.com/css?family=Lato|Roboto" rel="stylesheet">
        <style type="text/css">
            .post-archive {
                width: 100%;
                padding: 20px 0;
                font-family: "Lato", sans-serif;
            }
           
            .post-archive h4 {
                box-shadow: 0px -10px #ab494d inset, 0 0 120px #000 inset;
                color: #fff;
                font-size: 20px;
                margin: 0 0 10px 2px;
                padding: 5px 2px 15px 8px;
                font-family: "Roboto", sans-serif;
                font-weight: 700;
                border-radius: 5px 5px 0 0;
            }
           
            .ct-columns {
                -moz-column-count: 2;
                -moz-column-gap: 20px;
                -moz-column-rule: none;
                -webkit-column-count: 2;
                -webkit-column-gap: 20px;
                -webkit-column-rule: none;
                column-count: 2;
                column-gap: 20px;
                column-rule: none;
            }
           
            .ct-columns p {
                padding: 5px 0px;
                -moz-column-break-inside: avoid;
                -webkit-column-break-inside: avoid;
                -o-column-break-inside: avoid;
                -ms-column-break-inside: avoid;
                column-break-inside: avoid;
                display: inline-block;
                width: 100%;
            }
           
            .ct-columns p a {
                background: #AB494D;
                color: #fff;
                display: block;
                border: 2px solid #3A3A3A;
                font-size: 14px;
                line-height: normal;
                border-radius: 4px;
                padding: 10px 15px;
                -webkit-transition: all .25s ease-in-out;
                -moz-transition: all .25s ease-in-out;
                -o-transition: all .25s ease-in-out;
                transition: all .25s ease-in-out;
                box-shadow: -1px -3px 2px #8f8c8c;
            }
           
            .ct-columns p a:hover {
                background: #27292E;
                color: #fefefe;
                text-decoration: none;
            }
           
            .ct-columns p a span {
                color: rgb(221, 233, 45);
            }
           
            @media screen and (max-width: 768px) {
                .ct-columns {
                    -moz-column-count: 2;
                    -moz-column-gap: 10px;
                    -moz-column-rule: none;
                    -webkit-column-count: 2;
                    -webkit-column-gap: 10px;
                    -webkit-column-rule: none;
                    column-count: 2;
                    column-gap: 10px;
                    column-rule: none;
                }
            }
           
            @media screen and (max-width: 550px) {
                .ct-columns {
                    -moz-column-count: 1;
                    -moz-column-gap: 0px;
                    -moz-column-rule: none;
                    -webkit-column-count: 1;
                    -webkit-column-gap: 0px;
                    -webkit-column-rule: none;
                    column-count: 1;
                    column-gap: 0px;
                    column-rule: none;
                }
            }
        </style>
        

         

        
        <link href="https://fonts.googleapis.com/css?family=Open+Sans|Raleway" rel="stylesheet">
        <style type="text/css">
            .post-archive {
                width: 100%;
                padding: 20px 0;
                font-family: 'Open Sans', sans-serif;
            }
           
            .post-archive h4 {
                border-bottom: 2px solid #EEEEEE;
                color: #333333;
                font-size: 20px;
                margin: 0 0 10px 2px;
                padding: 0 0 10px;
                font-family: 'Raleway', 'sans-serif';
                font-weight: 300;
            }
           
            .ct-columns {
                -moz-column-count: 2;
                -moz-column-gap: 20px;
                -moz-column-rule: none;
                -webkit-column-count: 2;
                -webkit-column-gap: 20px;
                -webkit-column-rule: none;
                column-count: 2;
                column-gap: 20px;
                column-rule: none;
            }
           
            .ct-columns p {
                padding: 5px 0px;
                -moz-column-break-inside: avoid;
                -webkit-column-break-inside: avoid;
                -o-column-break-inside: avoid;
                -ms-column-break-inside: avoid;
                column-break-inside: avoid;
                display: inline-block;
                width: 100%;
            }
           
            .ct-columns p a {
                background: #fafafa;
                color: #333;
                display: block;
                border: 2px solid #FFFFFF;
                font-size: 14px;
                line-height: normal;
                outline: 1px solid #EEEEEE;
                padding: 10px 15px;
                -webkit-transition: all .25s ease-in-out;
                -moz-transition: all .25s ease-in-out;
                -o-transition: all .25s ease-in-out;
                transition: all .25s ease-in-out;
            }
           
            .ct-columns p a:hover {
                background: #fff;
                color: #000;
                text-decoration: none;
            }
           
            .ct-columns p a span {
                color: rgb(255, 0, 0);
            }
           
            @media screen and (max-width: 768px) {
                .ct-columns {
                    -moz-column-count: 2;
                    -moz-column-gap: 10px;
                    -moz-column-rule: none;
                    -webkit-column-count: 2;
                    -webkit-column-gap: 10px;
                    -webkit-column-rule: none;
                    column-count: 2;
                    column-gap: 10px;
                    column-rule: none;
                }
            }
           
            @media screen and (max-width: 550px) {
                .ct-columns {
                    -moz-column-count: 1;
                    -moz-column-gap: 0px;
                    -moz-column-rule: none;
                    -webkit-column-count: 1;
                    -webkit-column-gap: 0px;
                    -webkit-column-rule: none;
                    column-count: 1;
                    column-gap: 0px;
                    column-rule: none;
                }
            }
        </style>
        

        Steps to Apply Sitemap Theme

        Step 1. Login to your Blogger account, then go to Pages > Click edit under Site Map page.
        Note: Make sure that HTML mode is on. if not, then toggle it on > click close button without saving the page and then open it again by clicking edit.

        Step 2. Click anywhere inside the input field and search the following code (use Ctrl + F):
         
        <script type='text/javascript'> 
        

        Step 3. Paste your theme code just above it (at the top).
        Note: If you have applied any theme code before then remove it before applying new theme code.

        Step 4. Configuration.
        - To change the number of columns replace numeric value inside:
        • For laptop    -moz-column-count: 2, -webkit-column-count: 2, column-count: 2
        • For ipad        -moz-column-count: 2, -webkit-column-count: 2, column-count: 2
        • For iphone   -moz-column-count: 1, -webkit-column-count: 1, column-count: 1
        Step 5. Click Update.
        Note: Dismiss any HTTPS error and Click on Update again.
        Not found any theme for your blog design? Send me your blog address via Contact Us page and i will try to add one for you in upcoming sitemap themes.
        hurray!
        You have successfully applied a new theme to your Site Map page. For any issues related to above Tutorial Please Comment Below. Stay Updated, Browse Howbloggerz! :)
        Like this post? Please share.