Skip to main content

How To Embed Facebook Page On A Blog


Most of the blogs and websites embed their Facebook Page and other Social Media Pages to attract more followers or visitors. This is one way to notify followers you have posted new blogs and if the content is informative, it might lead to more followers or visitors in your blog.

In this blog, I'll show you how to set-up or embed Facebook Page in your blog. 

 

1. Log in to your Blogger Dashboard

 

2. Navigate your Blogger Dashboard. 

    - Click Layout

    - then Add Gadget, and 

    - click HTML/JavaScript gadget

 

 

3. Add the ‘HTML/JavaScript gadget’ and copy this code.

 

<center><div class="fb-page" data-href="https://www.facebook.com/facebook/" data-width="360" data-small-header="false" data-adapt-container-width="true" data-hide-cover="false" data-show-facepile="true"></div></center>

 

4. Find this code and change it with the URL of your Facebook Page.

 

data-href="https://www.facebook.com/facebook/"

Example:  data-href="https://www.facebook.com/digitek.blog"

 

5. Paste the code in the ‘HTML/ JavaScript’ gadget. 

    - Type your Title (e.g.. "Digitek Facebook Page," or "Like us on Facebook,")

    - and, click Save


5. Type your web address in the browser's search bar and see if it appears like this.


Comments

  1. Numerous offline businesses are also using the online marketing approaches and are getting really good number of sales. This is why I also started out with this mode of promotion. Got my website ready by expert team and then hired the best seo company Los Angeles. I am very happy with the results.

    ReplyDelete
  2. enjoyed staying on this page and request you to keep publishing post like - Scroll to the top or bottom with sticky button

    ReplyDelete
  3. SMediaCenters is one of the best tools for social media marketing which is used for increasing your social media likes, comment, and followers. We’ll promote your account or content throughout social media, from Facebook, Twitter, Instagram to Reddit. More For Details Visit Mediacenters.

    ReplyDelete
  4. Step by step explanations along with pictures attract readers. This 3 minutes read has absolutely engaged me to read it till it is completed.
    Thank you for the worthy information.
    Social Media Marketing

    ReplyDelete

Post a Comment

Popular posts from this blog

How To Remove Search Bar in Infinix Note 4

You might want to remove the Search Bar displayed in your Infinix Note 4 phone but you don't know how to. Here is the guide to remove or disable the Search Bar on your mobile phone. 1. Long Press on your home screen. 2. Press the "Menu Button" 3. Find and select the "Other Settings" 4. Turn off the settings for Search Bar (by swiping the button from right to left and it will turn from color green into gray color) And, if you wanted to display it again. Just follow the same procedure and turn on the setting for the Search Bar. If you wish to display it again just swipe the button from left to right (from the color gray will turn into green).

How to Translate Text in Google Sheets

 Updated post here: https://werkify.blogspot.com/2023/02/translate-text-in-google-sheets-using-the-googletranslate-formula.html Having a hard time to translate text in Google Sheets? Here is a tip on how you can do it. GOOGLETRANSLATE Function Syntax GOOGLETRANSLATE(text, [source_language, target_language])   - text ~ the cell (text) you want to translate      - source language ~ the original language of the text; if you don't know you can use "auto"      - target language ~ the language you want the text to be translated ( language code usually start with the first two letters e.g. English ~ "en" , Korean ~ "ko" ) Is your language supported? Browse the list of Google Translate Supported Language . Translate My Sheet Add-on Translate My Sheet This simple Google Add-on allows you to translate your spreadsheet in more of 100 languages! Two options are available:      - Translate your selected range  ...

Count if Text is Bold in Google Sheet

Is there a way we can count or display the sum of bold text in the spreadsheet? Solution: Running a script in Google Apps Script. Cons:      - when the text is changed or updated the sum or count does not update      - need to run the script every time when you edit the spreadsheet function countboldcells () { var book = SpreadsheetApp.getActiveSpreadsheet(); var sheet = book.getActiveSheet(); var range_input = sheet.getRange( "A2:A18" ); var range_output = sheet.getRange( "A19" ); var cell_styles = range_input.getFontWeights(); // getFontStyle can only return 'italic' or 'normal' var count = 0 ; for ( var r = 0 ; r < cell_styles.length; r++) { for ( var c = 0 ; c < cell_styles[ 0 ].length; c++) { // isBold is a method for Google Documents only (not sheets) if (cell_styles[r][c] === "bold" ) { // you need at least two '=' signs // also include the index of cell_styles count = count + 1 ; // count += 1 would al...