HOW TO TAKEOUT YOUR WHOLE DATA FROM GOOGLE | DOWNLOAD ARCHIVE OF YOUR GOOGLE DATA

Let think of a situation, due to any reason you want to deactivate/close your Google account and before that you want to download your data from Google or you may want to download it for some other reason (may be for backup). Now you may be thinking which data? and answer is almost everything you have on Google and its products. It may contain your +1s, Blogger, Bookmarks, Calendar, Chrome, Contacts, Drive, Fit, Google Photos, Google Play Books, Google+ Circles, Google+ Pages, Google+ Stream, Groups, Hangouts, Keep, Location History, Mail, Maps (your places), Profile, Tasks, and YouTube data etc.
Below is the list of Google's 22 products (at the time of writing there were 22 products which may increase or decrease later on).


Google Products List



Now coming to main part "How to takeout your whole data from Google?". Using below mentioned steps you can download archive of your Google data.

Download Archive of your Google Data | Steps to follow:

 Step 1:   First sign in your Google account. You can do this by visiting mail.google.com or any other Google product.

Step 2:    After signing in your Google account, go to http://www.google.com/takeout .
[If you directly open this link without signing in, it will redirect you to Google Personal info & privacy page.]

Step 3:    A page will open with a complete list of Google products from where you select what you want to download. 
Tip: You can select/deselect any Google product as well as you can also select/deselect sub-options as shown in image given below (sub-options of Google Chrome). 


Select / Deselect Google Product


Sub-options:

Sub-Options available in Google Product Chrome Browser



Step 4:     Now click on "Next" button.
On next page you will get options to customize your archive. You can select file type out of following archive types:
  1. .zip 
  2. .tgz
  3. .tbz
You can also select delivery method. Under Delivery method you get following options:
  • Send download link via email
  • Add to Drive
  • Add to Dropbox
  • Add to OneDrive


Select file type | Select Delivery method | Create Archive



Step 5:    After selecting desired file type and delivery method, now click on "Create Archive" button.

After clicking Create Archive button, you will get following message stating that they will send you an email when your archive is ready.

You will get an email when archive is ready


The email you will receive will look like following one:

Download archive email alert

Google gives you one week as time limit to download your archive (if you had chosen 'send download link via email' in download methods).


If you have any doubt or query please feel free to ask by commenting below.

HOW TO MAKE EMBEDDED YOUTUBE VIDEOS RESPONSIVE | BLOGGER & OTHER PLATFORMS

HOW TO MAKE EMBEDDED YOUTUBE VIDEOS RESPONSIVE | BLOGGER & OHTER PLATFORMSIf you embed a video to your website, you must want that it should shrink or expand as per the display size of device. Nowadays much of the users use smartphones or tablets to surf Internet. So your website should fit each device accordingly.

Today we will discuss how to make embedded videos responsive. It will work for YouTube , Vimeo, DailyMotion and almost all other video sharing websites.

How a Video Embed Code Looks Like

Here is a example of YouTube video embed code. This is the code that you will get from video sharing websites. Your embed code may looks different from this, so don't worry.


<iframe width="560" height="315" src="https://www.youtube.com/embed/hClCXd2Gres?rel=0&amp;showinfo=0" frameborder="0" allowfullscreen></iframe>


You didn't need to do any changes in this code to make it responsive.

Example of non-responsive video is given at the end.


Also read:  How to browse Internet privately using Firefox & Google Chrome

How to Embed Videos Responsively


Now coming to actual work. Here we have two options:
  1. Implementation for single / current video only.
  2. Implementation for all videos of website.

Implementation for single / current video only

Just copy and paste following code into your website just like the normal video embed code and replace "Embed Code Here" with your video embed code.


<style>.eh-box { position: relative; padding-bottom: 56.25%; padding-top:30px; height: 0; overflow: hidden; max-width: 100%; margin:auto; float:none;}
.eh-box iframe,.eh-box object, .eh-box embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style>
<div class='eh-box'>
    EMBED CODE HERE
</div>

After replacing , it will look like as follows:


<style>.eh-box { position: relative; padding-bottom: 56.25%; padding-top:30px; height: 0; overflow: hidden; max-width: 100%; margin:auto; float:none;}
.eh-box iframe,.eh-box object, .eh-box embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style>
<div class='eh-box'>
   <iframe width="560" height="315" src="https://www.youtube.com/embed/hClCXd2Gres?rel=0&amp;showinfo=0" frameborder="0" allowfullscreen></iframe> 
</div>

Also read: How to enable hibernate option in Windows 10

Implementation for all videos of website

For this you need to do two things:

  1) Add CSS code to your website:

Add following CSS code to your website.


.eh-box {
     position: relative;
     padding-bottom: 56.25%;
     padding-top: 30px; height: 0; overflow: hidden;
     margin:auto;
     float:none;
}
.eh-box iframe,
.eh-box object,
.eh-box embed {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
}



If you don't no where to paste this CSS code, then simply copy following code and paste it just after <body> tag of every page where you want to embed videos responsively.

<style type="text/css">
.eh-box {
     position: relative;
     padding-bottom: 56.25%;
     padding-top: 30px; height: 0; overflow: hidden;
     margin:auto;
     float:none;
}
.eh-box iframe,
.eh-box object,
.eh-box embed {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
}
</style>

On Google's blogger / blogspot platform: 


Steps to follow:
1. Sign in your blogger account and go to Template option.

Template option in Blogger

2. Backup your template by clicking on Backup / Restore and then Download Full Template. If something goes wrong while implementation you can use it to reset all changes.
Backup Blogger Template

3. After Backup its time to modify the template. For that click on Edit HTML button.
Edit Html - Blogger Template

4.  Search the template code for <b:skin><![CDATA[  and paste following code just after it.

.eh-box {
     position: relative;
     padding-bottom: 56.25%;
     padding-top: 30px; height: 0; overflow: hidden;
     margin:auto;
     float:none;
}
.eh-box iframe,
.eh-box object,
.eh-box embed {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
}

5. Now Save template.

Don't forget to setup Open Graph Protocol for FB & Twitter in Blogger.

2) Use following code to embed videos:

Wherever you want to embed responsive video in your website, just use following code:


<div class="eh-box">
         YOUR EMBED CODE HERE
</div>

 Replace "YOUR EMBED CODE HERE" with your video embed code. After replacing it will look like:


<div class="eh-box">
         <iframe width="560" height="315" src="https://www.youtube.com/embed/hClCXd2Gres?rel=0&amp;showinfo=0" frameborder="0" allowfullscreen></iframe>
</div>


Following is a example of responsive video:



Non-Responsive Video:




Resize your browser window and see the difference between responsive and non-responsive video.

Also read: Amazing Internet tips and tricks that you can't miss

For any issue please comment below...  

HOW TO ENABLE / DISABLE HIBERNATE OPTION IN WINDOWS 10

Today I will guide you, how to enable / disable hibernate option in Microsoft's latest operating system Windows 10.

What actually Hibernate option do?

When you hibernate your PC, whole contents of RAM (Random Access Memory) copies to Hard Disk or any other non-volatile memory you have. Contents of RAM includes the all apps, documents etc. on which you were working.
When you again power on your PC you will find your PC is same state that it was before hibernation. So hibernate option is very useful. It allows you to power off your PC without closing any running app. It also helps to save power in laptops. So it is more preferable to use hibernate option in laptops instead of sleep.

How to enable Hibernate option?


To enable hibernate option in Windows 10 you have to follow following steps:
1. Open control panel.

View by option in control panel | windows 10


    a. If View by option is set to Category, then first click on "System and Security" option, then on next window click on "Power Options".
System and Security option in control panel | windows 10

Power option in control panel | windows 10

 b. If View by option is set to Large icons / Small icons., then click on "Power Options" .

Power option in control panel | windows 10

2. A new window will open. Here click on "Choose what the power button does" . This option is given on upper left side of window.

Choose what the power button does | windows 10


3. This will open a new window. Here click on "Change settings that are currently unavailable" . Then at bottom of the same window tick "Hibernate" option and Save Changes.

Enable Hibernate Option in windows 10

4. That's all. Now check your power options in start menu. You will find a new option there i.e. Hibernate option.

How to disable Hibernate option?


Follow same steps given above to enable hibernate option except the last step. In last you just have to untick
the Hibernate option and click on Save Changes.


[Video Guide] How to enable / disable hibernate option in #Windows10: 






AMAZING INTERNET TRICKS & TIPS THAT YOU CANNOT MISS

The title says 'Amazing Internet tricks & tips that you cannot miss' so its obivious that I will not talk about all that old tricks such as to search following on Google:


    do a barrel roll
    tilt
    Google in 1998
    zerg rush
    Pacman
    blink html 

Or to search Do the Harlem Shake on YouTube and wait for few seconds to see magic.

Do the Harlem Shake | Shake YouTube

 Above was the just introduction now coming to real one's.

# Use Mozilla Firefox / Google Chrome / Any other modern browser as notepad.

For this you just need to type data:text/html, <html contenteditable> in address bar and press enter. You can also bookmark that page.

# Create GodMode folder in Windows

For this you just need to create a new folder with following name:
GodMode.{ED7BA470-8E54-465E-825C-99712043E01C}

Or watch this video for more detailed procedure.



# Create disposable temporary email accounts

Yes, you can create disposable temporary email accounts (that you may need to complete a survey or something else). For this just go to Fakemailgenerator.com . You can also use following for this purpose :

MailDrop.cc

10 Minute Mail

Guerrilla Mail

Throw Away Mail

Mailinator


# Explore Space with Google Sky

Want to explore space by just sitting at your home / office then use Google Sky. Also try Google Moon and Google Mars .


# Play Game in Google Image Search

Yes, its true. You can play game in Google image search. You just need to search Atari Breakout in Google image search or click here.

Atari Breakout | Play Game in Google image search



# Internet not working, play game in Google Chrome

If Internet is not working and you are trying to open a webpage in Google Chrome you will see a error message with dinosaur. Then just press space.

Without Internet play Game in Google Chrome

# Some YouTube Tricks & Tips

All following tricks are for youtube watch page (where video plays). Please note if there is https:// in address, replace it http:// otherwise you may get a error.

1. To download YouTube video:

     Replace youtube with 10youtube.

2. To download Youtube video trick 2:

    Replace youtube with ssyoutube.

3. To bypass age restriction / watch restricted videos without signing in:

    Replace youtube with nsfwyoutube.

4. To convert video to gif format:

    Replace youtube with gifyoutube.

Example: To convert video to gif Change URL https://www.youtube.com/watch?v=LmwfQ0esJhk to http://www.gifyoutube.com/watch?v=LmwfQ0esJhk


# Google Timer with Alarm

Go to Google.com and search Google Timer. That's all.

Google Timer

# Google Calculator | Online Scientific Calculator

Go to Google.com and search Google Calculator.


Google Calculator | Online Scientific Calculator

# Food v/s Food on Google Search

Compare any two foods on google. For example: cheese vs butter

Google Food v/s Food | Cheese vs Butter

# Latest Standalone Offline Mozilla Firefox installer

For latest offline installer of mozilla firefox web browser go to http://goo.gl/rInJ46 . For detailed procedure please watch this video:



# Some Bonus Tips

  • In browser address bar to put .com behind the URL, just press Ctrl + Enter.
  • To open link in new tab, press & hold Ctrl and click on link.
  • Use Google search as dictionary. Just search meaning of AnyWord or AnyWord meaning . Change AnyWord with your word whose meaning you want to find.

HOW TO SETUP OPEN GRAPH PROTOCOL FOR FACEBOOK & TWITTER IN BLOGGER

HOW TO SETUP OPEN GRAPH PROTOCOL FOR FACEBBOK & TWITTER IN BLOGGER
Social networking sites are the great source of audience for blogs. Therefore publishers must put some of their attention on the questions like : How social networking sites pickup description of their post while sharing? or Which thumbnail of post will be displayed on sharing? etc.

Social networking such as Facebook, Twitter and Google+ provides the method to control these things up to some extent. They uses the Open Graph Protocol as standard with little variations for site to site. 

Today I will tell you the method to implement OGP (Open Graph Protocol) on blogger blogs for Facebook and Twitter.

Open Graph Protocol Namespace Declaration

First thing, first. Before implementing OGP for Facebook or Twitter, you must add following code to your blogger template. It is the namespace declaration of OGP required for later implementation.

Steps to follow:
1. Sign in your blogger account and go to Template option.

Template option in Blogger

2. Backup your template by clicking on Backup / Restore and then Download Full Template. If something goes wrong while implementation you can use it to reset all changes.
Backup Blogger Template

3. After Backup its time to modify the template. For that click on Edit HTML button.
Edit Html - Blogger Template


 4. This will open your template in a editable container. Click in it and press Ctrl+F. Search
<html


Search <html in Blogger template

5. Now add following code just before the closing angular bracket '>' of <html...> tag.
 xmlns:og='http://ogp.me/ns#'

So that it will looks like:
<html b:version='2' expr:dir='data:blog.languageDirection' xmlns='http://www.w3.org/1999/xhtml' xmlns:b='http://www.google.com/2005/gml/b' xmlns:data='http://www.google.com/2005/gml/data' xmlns:expr='http://www.google.com/2005/gml/expr' xmlns:og='http://ogp.me/ns#'>

* There may be variation in your <html...> tag. It can contain more or less namespace declarations.

6. Now save your template.

Setup Open Graph Protocol For Facebook

Now we can setup OGP for Facebook. For that follow steps given below.
Repeat steps 1 to 3 given above.
4. Search for
</head>
and add following lines just before it.
     <!-- Start Open Graph Protocol --> 

    <meta expr:content='&quot;en_US&quot;' property='og:locale'/>
    <meta expr:content='data:blog.canonicalUrl' property='og:url'/>
    <b:if cond='data:blog.pageType == &quot;item&quot;'>
    <meta expr:content='data:blog.pageName' property='og:title'/>
    <meta content='article' property='og:type'/>
    <meta content='ABOUT PAGE URL (EX:http://www.ezyhow.com/p/about.html)' property='article:author'/>
    <b:else/>
    <meta expr:content='data:blog.title' property='og:title'/>
    </b:if> 
    <meta expr:content='data:blog.title' property='og:site_name'/> 
    <b:if cond='data:blog.postImageThumbnailUrl'>
    <meta expr:content='data:blog.postImageThumbnailUrl' property='og:image'/>
    <b:else/>
    <meta content='DEFAULT THUMBNAIL / FAVICON URL IF NO THUMBNAIL IS NOT AVAILABLE' property='og:image'/>
    </b:if> 
    <b:if cond='data:blog.metaDescription'>
    <meta expr:content='data:blog.metaDescription' property='og:description'/>
    </b:if>

    <!-- End Open Graph Protocol -->

5.You must change the text in line no. 3, 8 and 16 with appropriate one's.
Line 3: en_US (US English) is language of your blog. You can change it as per your blog language, such as en_GB for United Kingdom English.
Line 8: If your blog does not have about page then you can remove this line
<meta content='ABOUT PAGE URL (EX:http://www.ezyhow.com/p/about.html)' property='article:author'/>
Line 16: Default thumbnail (generally favicon of your blog) should be of at least 200 X 200 pixels . This will be displayed when no thumbnail is present in post or it is smaller then 200 X 200.
6. (Optional) In addition to above lines, you can also add following lines:
<meta content='FACEBOOK APP ID' property='fb:app_id'/>
<meta content='FACEBOOK PROFILE ID' property='fb:admins'/>
Here also, you must change FACEBOOK APP ID and FACEBOOK PROFILE ID with appropriate one's.
Facebook App Id: If you do not have a Facebook app id then go to https://developers.facebook.com/apps and create your app and get app id.
Facebook Profile Id: For Facebook profile id go to FB ID Finder and find your numeric profile id.

7. Now Save your template.

After all this, Is there a way to verify the above implementation? Answer is Yes. You can verify above implementation by going to https://developers.facebook.com/tools/debug/ . Enter your blog URL there and click Debug button.

Note: Result of Facebook Open Graph Object Debugger can contain some warnings but it should not contain any error. If there is any error check your modifications you made in template. If no mistake is found then you must upload your backup template and redo all the above steps again.

You may also want to read How to browse internet privately in Mozilla Firefoz & Google Chrome

Setup Open Graph Protocol For Twitter Cards

If you implement OGP for Twitter cards, your tweets will have a new attribute i.e. View summary. Your tweets will look like :
Twitter View Summary Example

Upon clicking on View summary option it will provide viewers with more information about your blog, article , its description, link , site logo etc. You can see it in image given below:
Twitter View Summary Upon Click

Now let's focus on its implementation. To implement Open Graph Protocol for Twitter cards in blogger follow the steps given below:
Repeat steps 1 to 3 given above in OGP namespace declaration.
4. Search for
</head>
and add following lines just before it.
    <!--  START OF TWITTER CARD IMPLEMENTATION   -->
    <meta content='summary' name='twitter:card'/> 
    <meta content='@YOUR_TWITTER_HANDLE' name='twitter:site'/>
    <meta content='URL_OF_YOUR_BLOG' name='twitter:domain'/>
    <b:if cond='data:blog.pageType == &quot;item&quot;'>
    <meta expr:content='data:blog.pageName' name='twitter:title'/>
    <b:else/>
    <meta expr:content='data:blog.homepageUrl' name='twitter:url'/>
    <meta expr:content='data:blog.pageTitle' name='twitter:title'/>  
    </b:if>
    <b:if cond='data:blog.postImageThumbnailUrl'>
    <meta expr:content='data:blog.postImageThumbnailUrl' name='twitter:image:src'/>
    <b:else/>
    <meta content='DEFAULT THUMBNAIL / FAVICON URL IF NO THUMBNAIL IS NOT AVAILABLE' name='twitter:image:src'/>
    </b:if> 
    <b:if cond='data:blog.metaDescription'>
    <meta expr:content='data:blog.metaDescription' name='twitter:description'/>
     </b:if>
    <meta expr:content='data:blog.canonicalUrl' name='twitter:url'/>
    <!--  END OF TWITTER CARD IMPLEMENTATION   -->

5. You must update the line no. 3, 4 and 14 with appropriate content.
Line 3: Replace @YOUR_TWITTER_HANDLE with your twitter username. For example @EzyHow .
Line 4: Replace URL_OF_YOUR_BLOG with your blog URL such as http://www.ezyhow.com .
Line 14: Replace DEFAULT THUMBNAIL / FAVICON URL IF NO THUMBNAIL IS NOT AVAILABLE with URL of any default image (generally your blog favicon). It will be used when there is no thumbnail in article or when twitter is not able to find / access it.

6.  Save your template.

Just like the Facebook, you can also validate this implementation by visiting https://cards-dev.twitter.com/validator . Enter your blog URL there and click on Preview Card button. If there is no error in implementation then it will give you a sample how your Twitter cards will look like. As you are doing it first time, it will give you a option to whitelist your summary card. You must whitelist it so that it can be approved by Twitter.

If this post helped you then its pleasure to share this post.


HOW TO PRINT DIAMOND / RHOMBUS SHAPE OF '*' IN JAVA LANGUAGE

Hello readers, today I will tell you the logic to print the diamond or rhombus shape of asterisk symbol ('*'). We will use Java language to implement this logic but you can easily modify the code to any other language such as C & C++.

The output of program will be:
HOW TO PRINT DIAMOND / RHOMBUS SHAPE OF '*' IN JAVA


We will follow the time tested method of 'divide and conquer' to solve this problem. We will divide the shape into two parts as shown below:

 Part 1:
HOW TO PRINT DIAMOND / RHOMBUS SHAPE OF '*' IN JAVA LANGUAGE | PART 1

Part 2:
HOW TO PRINT DIAMOND / RHOMBUS SHAPE OF '*' IN JAVA LANGUAGE | PART 2

In implementation we will first print the upper part (part 1) and then the lower part (part 2) of shape.

Program to print diamond / rhombus shape


/*Java program to print diamond or rhombus shape
2014 © EzyHow.com*/
class Diamond
{
 public static void main(String args[])
 {
  int spaces,j,i;
  for(i=1;i<=4;i++)                    // To print part 1 of shape
  {
   for(spaces=4-i;spaces>0;spaces--)   // To print white spaces
    System.out.print(' ');
   for(j=2*i-1;j>0;j--)                // To print '*'
    System.out.print('*');
   System.out.print('\n');
  }
  for(i=3;i>=0;i--)                    // To print part 2 of shape
  {
   for(spaces=0;spaces<4-i;spaces++)   // To print white spaces
    System.out.print(' ');
   for(j=0;j<2*i-1;j++)                // To print '*'
    System.out.print('*');
   System.out.print('\n');
  }
 }
}

Note: If you are writing your code in notepad (or any other text editor), then you must save it as Diamond.java file.
To execute it follow the instruction below:
1. First open command prompt (cmd).
2. Change directory to directory where you saved the file (Diamond.java) . For this you can use cd command.
If you are on windows 7 or above then you can directly go to directory where you saved file and press & hold shift key and then right click. This will open a context menu, from which choose 'open command window here'.
3. Then type javac Diamond.java command and press enter key to compile the program.
If there is no syntax error in code and environment variables are set correctly, then above command will a create a new file in directory named Diamond.class.
4. Now type java Diamond command and press enter key.
If everything is alright then you will get the output as shown below:
OUTPUT | HOW TO PRINT DIAMOND / RHOMBUS SHAPE OF '*' IN JAVA LANGUAGE

Explanation Of Code

In the above code we have created a class Diamond having the main method. First line of main method declares the three variables of integer type. We will use these variables as loop control variables in later code.

The first outer for loop for(i=1;i<=4;i++){...} is used to print the upper part of shape. It further has two inner for loops. First one to print white spaces and second one to print the asterisk symbol ('*').  First inner for loop for(spaces=4-i;spaces>0;spaces--){...} (used to print white spaces), prints three white spaces in first run of outer for loop and decrement by one, in each next run of outer loop till the number of white spaces becomes zero. Opposite to it, second inner loop for(j=2*i-1;j>0;j--){...} prints one asterisk symbol ('*') in first run of outer loop and increments by two in each next run of outer loop till '*' becomes seven in number.

The second outer for loop for(i=3;i>=0;i--){...} is used to print the lower part of shape. It also have two inner for loops, again one for printing white spaces and other one to print the asterisk symbol ('*'). First inner loop for(spaces=0;spaces<4-i;spaces++){...} prints the one white space in first run of outer loop and in each next run of it increments the number of white spaces by one. Second inner loop prints the five asterisk symbol ('*') in first run of outer loop and in each next run  of it, decrements the number of asterisk symbol by two.

You can easily modify the number of rows of this shape by changing the value of i but remember that second outer for loop must have value of i initialized by the number less by one from the highest possible value of i in the execution of first outer for loop. You can also have fun by testing the different values for loop control variables i, j and spaces.

You may also want to read How to browse internet privately using firefox & chrome

Bonus Part

Just as bonus to my readers, I had converted the above code to C and C++ language.

C Program To Print Diamond / Rhombus Shape

/*C program to print diamond or rhombus shape of '*'
2014 © EzyHow.com */
#include<stdio.h>
#include<conio.h>
void main()
{
 int spaces,j,i;
 clrscr();
 for(i=1;i<=4;i++)                            // To print part 1 of shape
 {
  for(spaces=4-i;spaces>0;spaces--)    // To print white spaces
   printf(" ");
  for(j=2*i-1;j>0;j--)                 // To print '*'
   printf("*");
  printf("\n");
 }
 for(i=3;i>=0;i--)                            // To print part 2 of shape
 {
  for(spaces=0;spaces<4-i;spaces++)    // To print white spaces
   printf(" ");
  for(j=0;j<2*i-1;j++)                 // To print '*'
   printf("*");
  printf("\n");
 }
 getch();
}

C++ Program To Print Diamond / Rhombus Shape

/*C++ program to print diamond or rhombus shape of '*'
2014 © EzyHow.com */
#include<iostream.h>
#include<conio.h>
void main()
{
 int spaces,j,i;
 clrscr();
 for(i=1;i<=4;i++)                           // To print part 1 of shape
 {
  for(spaces=4-i;spaces>0;spaces--)   // To print white spaces
   cout<<' ';
  for(j=2*i-1;j>0;j--)                // To print '*'
   cout<<'*';
  cout<<'\n';
 }
 for(i=3;i>=0;i--)                           // To print part 2 of shape
 {
  for(spaces=0;spaces<4-i;spaces++)   // To print white spaces
   cout<<' ';
  for(j=0;j<2*i-1;j++)
   cout<<'*';                  // To print '*'
  cout<<'\n';
 }
 getch();
}

You can replace asterisk symbol ('*') with any other symbol (such as @ # $ % ^ & etc.) as your wish.

 Also read: How to make embedded videos responsive.

If you have any doubt or suggestion for above written code then don't hesitate to comment below.