Showing posts with label page. Show all posts
Showing posts with label page. Show all posts

Saturday, April 1, 2017

How to Create a Basic Fan Page on Facebook

How to Create a Basic Fan Page on Facebook


Facebook is the undisputed king of social networks.  Millions of users visit the social network daily to communicate with friends and family.  However, its power as a networking and marketing tool becomes apparent when you take advantage of one of Facebook’s most enduring and powerful features—the fan page.
Facebook fan pages are special, standalone Facebook profiles that can be used to promote a business, bring awareness to a cause, or brand yourself as an artist or professional.  Because they look and act like personal profiles, fan pages lend a personal touch to business activities and marketing campaigns.  The tips in this tutorial will give you a head start on creating your very own Facebook fan page to show to the world.
1. Log on to Facebook.  Scroll all the way down to the bottom of the page where you see the words “Create a Page.”  Click on that link.  (Alternatively, you can find the “Create a Page” link on the left-hand side of any fan page.)
2. You’ll now see six main category options for the page you’re about to create.  Click on the most relevant one.  Once you select a general category, Facebook will provide a drop-down menu that asks you to refine the category.  Once you do this and agree to Facebook’s terms, click the “Get Started” button.

Figure 1. Facebook’s Create a Page screen.  The main category “Artist, Band or Public Figure” has been selected.

3. You’ll now be taken through a series of steps.  Click Continue to progress through each one or  Skip if you intend to return to a certain step later.

Step 1: Profile Photo. Here is where you upload the profile picture that will be used for the fan page.  This photo can be uploaded from your computer or your website.

Step 2: Get Fans. No fan page is complete without fans.  Here is where you can send an invitation to “like” your new page out to your Facebook friends or import contacts from other social media services.

Step 3: Basic Info. Here, you can provide your website’s URL and write a few sentences on what youre going to promote.

4. Your Facebook fan page has now been created!  Facebook will prompt you to enter additional information to fully flesh out your page, especially if you’ve skipped some of the steps above.  Click “Edit Page” in the upper-right corner of the page to change various settings and add relevant information.

Figure 2.  A new fan page on Facebook.  Youre prompted in the middle of the page to complete various tasks that will get your new Facebook presence up and running.

5. Start posting status updates!  You can begin by clicking on the “Post Update” button that appears in the middle section of the page.  Once you have a solid fan base (that is, Facebook users who have “liked” your page) and a steady stream of visitors, posting updates will be the best way to keep them engaged and informed.

That’s all there is to creating a simple Facebook fan page!  Promote your new page consistently, keep it regularly updated, and watch your popularity soar.

Go to link Download

Read more »

Monday, March 27, 2017

How To Make a Pinterest Business Page

How To Make a Pinterest Business Page



How To Make a Pinterest Business Page - Maybe youve thought about how to create a business page pinterest, how to make a pinterest business page or how to set up a business page pinterest. Well, I have a little story for you about how to start a business pinterest page.

Pinterest is a visual social-based technologies. Features that exist on Pinterest allows users to indicate board-board favorite by way of pin. Pinterest also predicted to foster engagement between buyers and sellers.

Engagement in order to wake the buyer, the seller should publish the board-board appeal. In addition to drawing, the board also needs to have a value-added so that the interested buyers to always follow the activities of sellers on Pinterest. By doing so, the brand products are sold will be top of mind buyers.

There are three unique and creative waysve done some overseas companies in growing its customer engagement through Pinterest.

Every one pin a dollar appreciated

A Japanese electronics company from ever implementing a social campaign. They make a board that contains the gadget of choice. Then, each customer is me repin one pin will donate one dollar for a foundation.

Ways social campaigns such as this makes the customer actively involved in these activities. In addition, the electronics company claimed, with the campaign, the brand awareness of its products are created and the buyer arising from the engagement.

Using guest pinners

One creative way to use more Pinterest is by asking a public figure or an expert to fill the board. Sellers can make a special board contributor category. The Board will be filled with the result pin of the community leaders. So, it would be interesting Pinterestnya page and always awaited by customers.

Naturally, the chosen contributors are people who are experts in the field or understand the products sold by the online store owner.

Trying to introduce a business carried on to the buyer personally

Engagement can be due to personal emotional bond between sellers and buyers. To foster the personal connection, the seller can introduce yourself through Pinterest.

There are two friends from Vermont, USA, who introduced the ice cream business through Pinterest. Board that they have helped the customer to understand who is the founder of the business, what is the background of the establishment of their ice cream business, anyone who works there, the pin of the customer, until the ice cream recipe that they sell. They said, this board is made so that the customer can feel that they are very caring and want their customers to participate in any activity of an ice cream shop.

I hope to inspire you

Go to link Download

Read more »

Thursday, December 1, 2016

How to Add Multiple Slideshows on One Page Using Javascript

How to Add Multiple Slideshows on One Page Using Javascript



Most of our visitors asked "How to Add Multiple Slideshows on One Page Using JavaScript" by commenting on different previous posts for JavaScript slideshow and going to write this post about to add multiple slideshows on the same page. Using this script you can add number of slideshows on single page as your requirements. 


Multiple Slideshows on One Page Using JavaScript



To make multiple slideshows, at first you have to make variable lists for each slideshows and have to create new slideshow using function slideshow( ). Here I have created two slideshows with variables SlideList1 and SlideList2 and uses function slideshow with parameters slideList, image, speed and name.

You can create number of new slideshows using this function below using new keyword. i.e. var slideshow1=new slideshow(slideList1, slide1, 3000, slideshow1);

function SlideShow(slideList, image, speed, name) 
{
this.slideList = slideList;
this.image = image;
this.speed = speed;
this.name = name;
this.current = 0;
this.timer = 0;
}

And the another function switchImage( ) given below allows you to  change images while playing slideshows.

function switchImage(imgName, imgSrc) 
{
if (document.images)
{
if (imgSrc != "none")
{
document.images[imgName].src = imgSrc;
}
}
}

Here is a full JavaScript code for making multiple slideshows on one page using JavaScript. Copy the following codes inside body tag of your HTML file and replace given image source <img src=" "> with your image source.


<img src="image1.gif" name="slide1">
<img src="image2.gif" name="slide2">
<script type=text/javascript>
var SlideList1 = [image1.gif, image2.gif, image3.gif];
var SlideShow1 = new SlideShow(SlideList1, slide1, 3000, "SlideShow1");
var SlideList2 = [image4.gif, image5.gif, image6.gif];
var SlideShow2 = new SlideShow(SlideList2, slide2, 1000, "SlideShow2");
function SlideShow(slideList, image, speed, name)
{
this.slideList = slideList;
this.image = image;
this.speed = speed;
this.name = name;
this.current = 0;
this.timer = 0;
}
function switchImage(imgName, imgSrc)
{
if (document.images)
{
if (imgSrc != "none")
{
document.images[imgName].src = imgSrc;
}
}
}
SlideShow.prototype.play = SlideShow_play;
function SlideShow_play()
{
with(this)
{
if(current++ == slideList.length-1) current = 0;
switchImage(image, slideList[current]);
clearTimeout(timer);
timer = setTimeout(name+.play(), speed);
}
}
window.onLoad=SlideShow1.play();SlideShow2.play();
</script>


Here the speed of first and second slideshows are specified 3000 and 1000 respectively, your can change them as your requirements. Also you can add more slideshows by adding more slideList and slideshow variables.


Preview of  JavaScript Code Given Above



slide1

slide2



You can add custom CSS codes to give different styles like setting border using border: property, give rounded corners using border-radius property as presented in the previous post "How to make rounded corners border using CSS" and can give different animation effects like fade effects, zoom effects, slide effects etc. 

You can refer to the following previous posts to give fade effect animations using CSS, JavaScript or JQuery codes.

  • How to create fade effect image slideshow using CSS
  • How to Create Simple JavaScript Fade Effect Animation?
  • Simple JavaScript Fade Effect Animation Using Jquery

     


Related Posts:




  • How To Create Simple Image Slideshow Using JavaScript ?
  • Image Slideshow with Navigation Buttons Using JavaScript
  • How to Create JavaScript Image Slideshow with LInks
  • How to Display Date Format in JavaScript?
  • How to Create a Digital Clock in JavaScript?
  • What are the Different Ways to Redirect Page in JavaScript?
  • How to Detect Visitors Browser Using JavaScript?



Go to link Download

Read more »

Monday, November 7, 2016

Get Thousands Of Facebook Fan Page Likes Free Of Cost 100 Working

Get Thousands Of Facebook Fan Page Likes Free Of Cost 100 Working


Get Thousands Of Facebook Fan Page Likes Free Of Cost 100% Working Tools : Beauty like you want to do with our free Facebook as many free Facebook likes can. You can get for free our beauty, something you will not have to worry about! Take advantage of this rare and unique promo. Unlimited free Facebook fan of all your pages, images, or even the likes on your status updates, you can get a tool!

Get Thousands Of Facebook Fan Page Likes Free Of Cost
Get Thousands Of Facebook Fan Page Likes Free Of Cost
Download

Go to link Download

Read more »