Showing posts with label Webmaster tools. Show all posts
Showing posts with label Webmaster tools. Show all posts

How to create Sitemap of your Website?

What is Sitemap?

site map (or sitemap) is a list of pages of a web site accessible to crawlers or users. It can be either a document in any form used as a planning tool for Web design, or a Web page that lists the pages on a Web site, typically organized in hierarchical fashion.
Typically, site maps are organized hierarchically, breaking down the Web site's information into increasingly specific subject areas. There are a number of different types of site maps: organizational chart site maps are quite similar in appearance to a traditional table of contents; others, based on a perspective view of the site, are like a three dimensional model with individual pages upright, like index cards, arranged in sections and linked by lines. Structured Graph Format (SGF) site maps use an XML format language to describe Web site content, and a Java SGF viewer to interact with the data. There are a number of companies making site mapping products; generally, these don't require Web design skills - such as HTML or XML ability - on the part of the user. Popular site mapping products include TheBrain's SiteBrain, Inxight Software's Tree Studio, IBM's Java-based Mappuccino, and Dynamic Diagram's eponymous product. Site maps can also be created using more general Web site management tools, such as Visual Web, or Microsoft's Site Analyst. 


How to create sitemap for your website ?



1).Open your website in your browser
                              

2).Type sitemap.xml after the Web address (URL)

3).then you can see the page like this ..

Share this to your groups.... #MS



How to highlight your blogger post?



Its important to post frequently in order to encourage readers to come back. Of course, the more you post, the more quickly your posts slip down into the archives, making it harder for your readers to discover everything you’ve posted that they might be interested in.

To help make it easier to showcase the posts you want your readers to see, Blogger created a new gadget called Featured Post. With Featured Post, you can choose posts you’ve shared on your blog and highlight them wherever you’d like.


How ?

Open the Layout section in your blogger dashboard then click on the add gadget 


Then you can see a pop window like the given one.



then you can see a widget named Featured post.Then click on the "+" button then another window will come out.


Then choose a name to your gadget.Then you can choose the post snippet tick on the box given.
Then you can choose the featured post by searching or choosing by label.Then save your gadget.
Then view your blog.Featured post widget should be there ☺ 

How to add Facebook page widget into Blogger?

How to add Facebook page widget into Blogger?
The Page plugin lets you easily embed and promote any Facebook Page on your website. Just like on Facebook, your visitors can like and share the Page without having to leave your site.

Visit this website to make your page's Widget Page Plugins

And the page says like this :-)

How to add the Page Plugin to your Website

The standard configuration of the Page plugin includes only the header and a cover photo. This size is ideal for promoting your Page in a small space, such as the top of a sidebar.
<div class="fb-page" data-href="https://www.facebook.com/facebook"
  data-width="380" data-hide-cover="false" data-show-facepile="false" 
  data-show-posts="false"></div>

Adaptive Width

The plugin will by default adapt to the width of its parent container on page load (min. 180px / max.500px), useful for changing layout:
<div style="width: 190px;">
    <!-- Page plugin's width will be 190px -->
  <div class="fb-page" data-href="{url}" data-width="420"></div>
</div>
If the width of the parent element is bigger than the Page plugin's width it will maintain the value defined in data-width:
<div style="width: 600px;">
    <!-- Page plugin's width will be 500px -->
  <div class="fb-page" data-href="{url}" data-width="500"></div>
</div>
The plugin will never be smaller than 180px:
<div style="width: 100px;">
    <!-- Page plugin's width will be 180px -->
  <div class="fb-page" data-href="{url}" data-width="320"></div>
</div>
Adaptive width can be switched off by unchecking Adapt to plugin container width and the plugin will rendered at the specified width irrespective of the parent container.

No Dynamic Resizing

The Page plugin works with responsive, fluid and static layouts. You can use media queries or other methods to set the width of the parent element, yet:
  • The plugin will determine its width on page load
  • It will not react changes to the box model after page load.
If you want to adjust the plugin's width on window resize, you manually need to rerender the plugin.

Show Friend's Faces

Show who likes your Page with real people's profile images rather than just a number. People visting your Page will see a count of friends that like the Page as well as their profile photos.
This option can be activated by checking Show Friend's Faces in the configurator.
<div class="fb-page" data-href="https://www.facebook.com/imdb" 
  data-width="340" data-hide-cover="false" data-show-facepile="true"
  data-show-posts="false"></div>

List Page Posts

You can show posts from the Page's timeline in your Page plugin implementation. This is a great way to keep people up to date with what is going on on your Page.
This option can be activated by checking Show Page Posts in the configurator or adding the attributedata-show-posts="true".
<div class="fb-page" data-href="https://www.facebook.com/instagram" 
  data-width="280" data-hide-cover="false" data-show-facepile="false"
  data-show-posts="true"></div>

Privacy Restricted Pages

Some pages have audiance restrictions by age, country, etc. A warning message is shown when you attempt to configure a Facebook Page which is not visible to everyone.
Although, the warning message will only be visible while configuring the plugin here on developers.facebook.com
If a restricted Facebook Page is embedded, then:
  • Plugin will render normally as expected for those who are not restricted.
  • Plugin would not render at all for those who are restricted.

Adjust Language

You can adjust the language of the Page plugin plugin by loading a localized version of the Facebook JavaScript SDK. When you load the SDK adjust the value js.src to use your locale: Just replaceen_US with your locale, e.g. ru_RU for Russian (Russia):
Example
  js.src = "//connect.facebook.net/ru_RU/sdk.js#xfbml=1&version=v2.3";
Supported locales are referenced in the Facebook Locales XML file. You may need to adjust the width of a Social Plugin to accommodate different languages. You may find more information on ourLocalization & Translation page.