Intro Posts Slider

recent

Top News

Dark Skin

Loading Animation with CSS & HTML

It will Show You How to Create loading Animation CSS & HTML.

code is here



<html>
<head>
   
    <title>css-loading-animation</title>

    <style>
        body{
            background-color: #353b48;
        }
        #loader{
            width: 150px;
            margin: 150px auto 70px;
        }
        #loader #loading{
            width: 100%;
            height: 10px;
            border: 1px solid #f5f6fa;
            border-radius: 10px;
            position: relative;
            animation: turn 4s linear infinite;
        }
       
        #loader #loading:before{
            content: "";
            display: block;width: 0%;
            height: 100%;
            background-color: #f5f6fa;
            position: absolute;
            animation: load 2s linear infinite;
        }

        #loader #loading_1{
            width: 100%;
            color: #f5f6fa;
            position: relative;
            top: 10px;
        }
        #loading_1{
            font-size: 18px;
            text-align: center;
        }
        @keyframes load{
            0%{
                width: 0%;
            }
            87.5%{
                width: 100%;
            }
        }
        @keyframes turn{
            0%{
                transform: rotateY(0deg);
            }
            6.25% , 50%{
                transform: rotateY(180deg);
            }
            56.25% , 100%{
                transform: rotateY(360deg);
            }
        }
    </style>
</head>
<body>

    <div id="loader">
        <div id="loading">
</div>
<div id="loading_1">
Loading...</div>
</div>
</body>
</html>


Download Here

How To Multiply Two Numbers By Using Doubling Method

what is mean by doubling a number?

  • Means to double the given number.

  • There are three methods to double a number. 

    Methods: 

    1)Method one: By adding
    2)Method Two: By multiplying by 2
    3)Method Three:By multiplying 2 given numbers For Example(13 x 25 = ?)

    For finding the Multiplication of number 13 and number 25 fellow the given steps below:

    steps:

    1) strat with 1 and 25
    2) working downwards, double each number untill you have a number just         below 13 in the left hand column.
    3) Tick the number in the left-hand column that add up to 13
        1+4+8 = 13
    4) Add together the number in the ticked row in the right column.
        25+100+200=325
    5)so 13x25 = 325 

      Let For Complete understanding watch cool video:

C++ Program to Generate Multiplication Table



  •   This example help you to understanding the concept of For loop in c++

Example:1 Printing Table Up To 10

  • The above  example taking a integer value from user for printing a Table of the specific integer that the user has been Enter. 
  • Using Dev c++ writing and compiling the C++ code 
  • Press  F11 To compile and Run the program.

Output:-

Enter an integer: 3
3 * 1 = 3
3 * 2 = 6
3 * 3 = 9
3 * 4 = 12
3 * 5 = 15
3 * 6 = 18
3 * 7 = 21
3 * 8 = 24
3 * 9 = 27
3 * 10 = 30