Les nouveautés et Tutoriels de Votre Codeur | SEO | Création de site web | Création de logiciel

seo How to Make the Blogger Posts Have a Calendar for the Date in 2013

Seo Master present to you: It's quite common to see calendar style dates next to some WordPress posts but for the Blogger platform it isn't always an very easy task to add this. But who said you can't do it? You need to look no further than this blog. In this tutorial, we'll learn how to create a calendar style date for your Blogger posts.


How to create calendar style dates in Blogger

Step 1. Go to Settings > Language and Formatting - Date Header Format and change the date format as you can see in my example below (put day first, then the month and finally the year)
 

Step 2. Then go to Template > Edit HTML


Step 3. Select the "Expand Widget Templates" checkbox

Step 4. And search (CTRL + F) the following line:

<h2 class='date-header'><span><data:post.dateHeader/></span></h2>

Step 5. In case you find it twice, then you should replace it twice with this code:

<div id='Date'>
<script>changeDate(&#39;<data:post.dateHeader/>&#39;);</script>
</div>
<b:else/>
<div id='Date'>
<script>changeDate(&#39;&#39;);</script>
</div>

Step 6. Now search for this tag (CTRL + F to find it)

</head>

Step 7. And paste the code from below just ABOVE the </head> tag:

<script type='text/javascript'>
//<![CDATA[
var DateCalendar;
function changeDate(d){
if (d == "") {
d = DateCalendar;
}
var da = d.split(' ');
day = "<strong class='date_day'>"+da[0]+"</strong>";
month = "<strong class='date_month'>"+da[1].slice(0,3)+"</strong>";
year = "<strong class='date_year'>"+da[2]+"</strong>";
document.write(month+day+year);
DateCalendar = d;
}
//]]>
</script>
<b:if cond='data:blog.pageType != &quot;static_page&quot;'>
<style type='text/css'>
/* Calendar style date
----------------------------------------------- */
#Date {
background: transparent url(http://www.matrixar.com/-NVj6tUKJgLo/UBShW2dCLSI/AAAAAAAACZk/3TkTa8Hzqt0/s1600/calendar07.png) no-repeat;
display: block;
width:60px;
height:60px;
float: left;
margin: 15px 2px 0 -108px;
padding: 0 0 8px 0px;
border: 0;
text-transform: uppercase;
}
.date_month {
display: block;
font-size: 15px;
font-weight:bold;
margin-top:-1px;
text-align:center;
color:#ffffff; /* Month's color */
}
.date_day {
display: block;
font-size: 28px;
font-weight:bold;
margin-top:-8px;
text-align:center;
color:#282828; /* Day's color */
}
.date_year {
display: block;
font-size: 10px;
margin-top:-8px;
text-align:center;
color:#282828; /* Year's color */
}
</style>
</b:if>


Before saving your Template, we can make some changes:
  • To change the calendar style, replace the url in blue with yours;
  • If the calendar doesn't appear correctly, change -108 with 0;
  • With green are marked the areas where you can change the color of the dates

Step 8. Now Preview your Template and if everything is ok, click on the Save button. Enjoy!
2013, By: Seo Master

seo New Google Font Previewer - Webfonts Easier and More Fun 2013

Seo Master present to you: We’re very proud to tell you that we’ve just launched a new feature for the Google font directory. The new Google font previewer lets you test drive all the fonts in the directory so you can decide which web font in the Google Font API works best for your requirements.

Now, whenever you visit the font family page of any of the fonts, you will see a link saying “Preview this font” that will load your font selection into the font previewer.

Here you can edit the text, change its size and line height, and add decorations and spacing among other things. You can even apply text shadow to your text.

The previewer will generate the corresponding code for you so all you have to do to start using the font on your own website is to copy and paste the stylesheet link and the CSS into your pages. In the example above this would be:

<link href="http://fonts.googleapis.com/css?family=Lobster:regular"
rel="stylesheet" type="text/css" >
<style> body {
font-family: 'Lobster', serif;
font-size: 28px;
font-weight: 400;
text-shadow: 4px 4px 4px #bbb;
text-decoration: underline;
text-transform: lowercase; line-height: 1.42em; }
</style>

That’s really all you need to use the Google Font API.

If you want to see the font sample without any distractions from the font previewer controls, you can do that as well simply by clicking “Toggle controls” in the upper right corner. This will show you a nice clean example of what the font would look like in your design.

We think the previewer is a great way to try out web fonts and showcase what can be done with them. We’re looking forward to hearing what you think about the new font previewer.

2013, By: Seo Master

seo Google Calendar Now CalDAV-Enabled: Bring on the Feedback 2013

Seo Master present to you:

The Calendar team was the first to launch its Google Data API back in 2006, and in that proud tradition, we're excited to offer an additional way for developers to read from, and write to Google Calendar: the CalDAV protocol. (CalDAV — an extension of WebDAV — is an evolving, open standard for calendar synchronization.)

So far we've focused on Apple's iCal 3.0 as a first working example of 2-way Google Calendar sync over CalDAV.* But we're calling all current and prospective CalDAV developers to help us firm up the implementation, and make it play nice with other popular CalDAV-friendly clients.

For information on how Google Calendar data maps to the CalDAV protocol, please check out our CalDAV developer's guide. And of course, don't hesitate to hurl feedback in the general direction of our Google Group.

* Disclaimer: during this developer-focused release, and in light of known issues, we strongly suggest that you restrict Google Calendar <> iCal 3.0 synchronization to test accounts only.2013, By: Seo Master

seo Learn about Google Apps Script in NYC 2013

Seo Master present to you: By Saurabh Gupta, Developer Relations

Cross-posted from the Google Enterprise Blog

Google Apps Script lets you automate and extend Google Apps. Using Apps Script, businesses can build efficient solutions to meet their requirements such as:
Join us on August 18th for the Google Apps Script Hackathon. If your organization uses Google Apps and you want to explore how you can use Google Apps Script to create custom functions or automate repetitive tasks, then this hackathon is a perfect opportunity to learn. Google engineers will be available to answer your questions and help you learn Apps Script throughout the day’s agenda. We’ll provide food, refreshments, and experts to help you learn to use Apps Script and write your own scripts. Just bring your laptop, ideas, and enthusiasm to complete the mix. We hope to see you there!

What: Apps Script Hackathon
Date: Thursday, August 18th, 2011
Time: 2pm to 7pm EST
Where: 76 9th Avenue, New York, NY
Register: Space is limited, register here.

For those who cannot attend in person, we invite you to try out a number of self-paced tutorials on the Apps Script documentation site.

Posted by Scott Knaster, Editor
2013, By: Seo Master

seo Google Apps + OpenID = identity hub for SaaS 2013

Seo Master present to you: We're happy to announce that the Google OpenID Federated Login API has been extended to Google Apps accounts used by businesses, schools, and other organizations. Individuals in these organizations can now sign in to third party websites using their Google Apps account, without sharing their credentials with third parties.

In addition, Google Apps can now become an identity hub for multiple SaaS providers, simplifying identity management for organizations. For example, when integrated with partner solutions such as PingConnect from Ping Identity, the Google Open ID Federated Login API enables a single Google Apps login to help provide secure access to services like Salesforce.com, SuccessFactors, and WebEX — as well as B2B partners, internal applications, and of course consumer web sites. See Ping Identity's post to learn more about their implementation and view the demo.


Another early adopter is Manymoon.com, a SaaS project management vendor that implemented the Google Open ID Federated Login API directly to make it easier for any organization using Google Apps to sign up for and deploy Manymoon to their users:

In the Manymoon Login page, the user chooses to log in using a Google Apps account

The user types in his Google Apps email address. The user never gives away his Google Apps Account password to Manymoon.

The user is redirected to the Google Apps domain to approve sharing information with Manymoon.

Once approved, the user is redirected to Manymoon and is signed in and ready to work with selected accounts.

If you prefer an out-of-the-box solution, we have been working with JanRain, a provider of OpenID solutions that already supports the new API as part of their RPX product.


Supporting the API for Google Apps accounts is exciting news for the OpenID community, as it adds numerous new Identity Provider (IDP) domains and increases the OpenID end user base by millions. In order to allow websites to easily become Relying Parties for these many new IDPs and users, we defined a new discovery protocol. The protocol is designed to allow Relying Parties to identify that a given domain is hosted on Google Apps and to help provide secure access its OpenID Provider End Point. The current proposal is an interim solution, and we are participating in several standardization organizations, such as OASIS and the OpenID Foundation, to generate a next-generation standard. Since the current protocol proposal is not supported by the standard OpenID libraries, we provided an implementation of the Relying Party pieces at the Open Source project, step2.googlecode.com. Google is also offering a set of resources addressing the issues of designing a scalable Federated Login User Interface. You are welcome to visit the User Experience summary for Federated Login Google Sites page, where you can find links to demos, mocks, and usability research data.

You can find more details in our API and Discovery documentation, or join the discussions in the Google Federated Login API Group, where you can ask any question and get answers from other Identity Providers, Relying Parties and Google engineers.

The OpenID Federated Login Service is available for all Google Apps editions. However, it is disabled by default for the Premier and Education editions, and it requires the domain administrator to manually enable it from the Control Panel. We've enabled the service for our employees here at Google, and domain administrators — you can also enable it for your domain.

2013, By: Seo Master

seo How To Convert Image With Text Content Into Text Document 2013

Seo Master present to you:





Hi friends, now i share a useful trick to convert a image into a text document like MS Word, MS Excel, Text Plain etc. Read carefully.


 Image




At first you will go to www.onlineocr.net

  • Select a image and upload.


  • Select language , output format.


  • Enter the below code.


  • Click on Recognize.


  • After that you will get the result, please download documents if you want.









Its working enjoy…………………

2013, By: Seo Master

seo Tips Meningkatkan Alexa Rank Dengan Firefox 2013

Seo Master present to you: Belajar seo kali ini akan membahas Tips Meningkatkan Alexa Rank yang jarang diberikan bahkan oleh para master seo sekalipun (setahuku ). Begitu mudahnya trik ini dilakukan sehingga anda bisa tidur nyenyak dan system akan bekerja menaikkan Alexa Rank Kamu (wadduh.. kok jadi kaya jualan ebook ya..! Tenang yang ini gratis abis kok! )

Perlu diketahui bahwa prinsip Alexa dalam meranking suatu blog diantaranya dengan menilai jumlah trafik kunjungan ke suatu blog. Jadi untuk Meningkatkan Alexa rank ya tingkatkan trafik. Tapi bagaimana meningkatkan trafik lha wong blog aja baru seumur jagung plus postingan juga baru 1-2 biji. Nah tips berikut ini akan mengakali bagaimana supaya trafik blog kamu meningkat pesat bahkan puluhana ribu per hari (setidaknya di mata alexa) sehingga bisa meningkatkan Alexa Rank blog kamu sampai melambung ke awang-awang...

Langsung saja deh kamu ikuti tips meningkatkan alexa rank versi Om Jay ini.
  1. Gunakan Firefox atau commet bird sebagai browser kamu (browser lain belum ketemu caranya)
  2. Install addons Reload Every pada firefox kamu. kamu bisa menginstall-nya dari https://addons.mozilla.org/en-US/firefox/addon/115
  3. Aktifkan addons tersebut, dan restart firefox kamu.
  4. Setelah direstart, pada firefox akan muncul panah segitiga disamping tombol reload yang merupakan menu reload every yang baru kamu install, itu berarti instalasi sukses.

  5. tips menaikkan alexa rank | meningkatkan alexa rank
  6. Sekarang buka blog kamu pada jendela baru firefox.
  7. Klik menu reload every seperti di atas, pilih reload every 10s dan klik enable.
  8. Coba perhatikan, firefox akan mereload blog kamu setiap 10 detik sekali
  9. Sekarang buka 5 buah tab baru atau lebih, pada masing-masing tab lakukan seperti langkah di atas. jadi sekarang kamu punya 6 tab yang masing masing membuka blog kamu setiap 10 detik sekali.
  10. Biarkanlah proses itu berlangsung selama 1 jam atau 2 jam atau lebih.. lebih lama lebih baik.
  11. terakhir kamu hanya perlu menunggu keesokan harinya untuk melihat progres peningkatan alexa rank blog kamu. jika maku melihat ada kemajuan lakukanlah lagi.
Aku sendiri tidak menjamin tips meningkatkan alexa rank ini berhasil 100% untuk blog kamu, tapi tidak ada salahnya mencoba. lagi pula caranya gampang banget tinggal install --> jalanin --> selesai! kamu tinggal tunggu hasilnya esok hari. Gampang bukan!

Jangan lupa untuk memberitahukan hasil percobaanmu di sini!

Mengembalikan jati diri bangsa
2013, By: Seo Master

seo Trust และ Authority คืออะไรในแง่ของ SEO 2013

Seo Master present to you:
หากใครที่ศึกษา SEO ด้วยตนเองจากเนื้อหาภาษาอังกฤษแล้วละก็ บุคคลเหล่านั้นจะพบเจอคำว่า Trust กับ Authority อยู่บ่อยครั้ง ส่วนในภาษาไทยเองก็มีการพูดถึงบ้างเป็นครั้งคราว บทความนี้จะมาอธิบายว่ามันคืออะไร แล้วมี Factors อะไรบ้างที่เป็นส่วนประกอบของ Trust และ Authority นี้ สำหรับคำว่า Trust ในความหมายของ SEO นั้นหลายๆ คนคงจะรู้อยู่แล้ว แต่สำหรับคนที่ไม่รู้นั้น Trust ก็คือความน่าเชื่อถือที่ Google มีต่อเว็บเพจและเว็บไซต์ ยิ่งมีความน่าเชื่อถือมาก งานแต่ละชิ้นที่ออกมา ก็ได้รับความไว้วางใจมาก ส่วนในด้านของ Authority ในความหมายของ SEO ก็คือศูนย์กลางของข้อมูลในเรื่องใดๆซึ่งจะช่วยบอกถึงความสำคัญและการเป็นที่นิยมในเรื่องนั้นๆ

ในที่นี่ก็คือเว็บไซต์ที่มี Link ภายนอกจำนวนมากยิงเข้ามาที่เว็บไซต์และมีจำนวนลิ้งค์ออกน้อยๆ การมีค่า Trust และ Authority สูงๆ นั้นเป็นส่วนหนึ่งที่สามารถช่วยให้เราติดอันดับได้ง่ายขึ้น เมื่อเข้าใจถึงความหมายของมันแล้ว เรามาลองดูกันดีกว่าว่า ค่า Trust และ Authority มีส่วนประกอบมาจากอะไรบ้าง โดยข้อมูลอ้างอิงก็เอามาจากวิดีโอนี้เลยนะ (Presented โดย Rand Fishkin, CEO Seomoz)


Trust
สำหรับ Trust นั้น มีส่วนประกอบอยู่ 4 ส่วน หลักๆ คือ

  • Who links to you ใครลิ้งค์มาหาคุณบ้าง ในส่วนนี้ Rand บอกว่า Yahoo เคยอธิบายว่า การวิเคราะห์ Trust โดยอาศัย link ที่ิยิงไปหาเว็บอื่นๆ จะเริ่มจากเว็บที่ไม่มีการยิงไปหาเว็บ spam เลย หลังจากนั้นก็เอาเว็บปลายทางเหล่านั้นมาคำนวณหาอีก ว่ามีการยิงไปหาเว็บ spam กี่เปอร์เซ็น แล้วก็เอาเว็บปลายทางของรอบที่สองนี้มาหาต่อ ซึ่งจะวนแบบนี้ไปเรื่อยๆ แต่ % ของเว็บที่ยิงไปหาเว็บ spam นั้นก็จะมีมากขึ้นเรื่อย ๆ ทำให้ค่า Trust น้อยลง เพราะฉะนั้นแล้ว หากเราได้ลิ้งค์จากเว็บที่ยิงออกไปหาเว็บ spam น้อยๆ เราก็จะได้รับความไว้วางใจมากขึ้นนั่นเอง
  • Who do you link to ในทางตรงกันข้ามกับ Factor แรก แล้วคุณล่ะ Link ไปหาใครบ้าง อันนี้ก็สำคัญไม่แพ้ข้อแรกเลย เพราะหากคุณลิ้งค์ไปหาเว็บ Spam คุณจะถูกพิจารณาว่าเป็นเว็บ spam ไปด้วย เพราะฉะนั้นแล้วคุณต้องดูดีๆ ว่า เว็บใดๆ ที่คุณลิ้งค์ไปหา เป็นเว็บ spam หรือเปล่า และหากคุณลิ้งค์ไปหาเว็บที่มีความน่าเชื่อถือเป็นจำนวนมาก คุณก็จะได้รับความน่าเชื่อถือมากขึ้นด้วย
  • Registration info ข้อมูลในการจด Domain ก็เป็นส่วนหนึ่งที่สามารถนำมาพิจารณาได้ หากคุณจด Domain โดยใช้ชื่อเดียวกันหมดก็จะรู้ได้ว่าเว็บใดบ้างที่มีเจ้าของเดียวกัน หรือแม้กระทั่งข้อมูลที่อยู่หรือเบอร์โทศัพท์ ก็อาจจะถูกจัดให้อยู่ในกลุ่มเดียวกันกับเจ้าของเดียวกันด้วยก็ได้ แล้วมันเกี่ยวกับ Trust ไม่ Trust ยังไง ก็ตรงที่หากเว็บไซต์ของคุณแทบทั้งหมดเป็นเว็บ spam เว็บไซต์ใหม่ๆ ของคุณก็อาจจะเป็นอยู่ในข่ายไม่น่าไว้วางใจไปด้วย ซึ่งอาจจะติดอยู่ใน Sandbox เพื่อพิจารณาสักระยะ (ความหมาย SandBox ที่ผมใช้ในที่นี้ หมายถึงเว็บที่อยู่ในข่ายที่ต้องพิจารณาคุณภาพก่อน ไม่ใช่เว็บที่ติดโทษแบนแต่อย่างใด)
  • User Data Signal ข้อมูลจาก user ที่สามารถนำมาใช้ในการบอกถึงความน่าเชื่อถือได้ ซึ่งในส่วนนี้ค่อนข้างกว้าง แต่โดยรวมๆ แล้ว ก็จะมีพวกข้อมูลที่ได้จาก Google Toolbar, Free - Wifi, Google Analytics, Third Parties จากทั่วโลก โดยที่ข้อมูลเหล่านี้ อาจจะบอกถึงความเป็นธรรมชาติและไม่ปกติของเว็บต่างๆ ได้ แต่เรื่องนี้ค่อนข้างพูดยาก เพราะว่าต้องพิจารณากันค่อนข้างละเอียด และเว็บแต่ละชนิดอาจจะมีข้อจำกัดต่างกัน แต่ก็เอาเป็นว่าถ้าวิเคราะห์ดีๆ ก็สามารถวัดความน่าเชื่อถือได้บ้างไม่มากก็น้อยนั่นล่ะ ทีนี้เราก็คงพอมองภาพรวมออกแล้วว่า Trust มีส่วนประกอบอะไรบ้างนะครับ

Authority
คราวนี้มาดู Authority กันบ้าง ซึ่งก็มีส่วนประกอบหลักๆ อยู่ 4 อันเช่นกัน

  • Link Juice / PageRank ปกติแล้ว PageRank จะเป็นตัววัดค่าของหน้าเว็บแต่ละหน้าเท่านั้น แต่ว่ากรณีนี้ให้มองไปในลักษณะภาพรวมของ Domain เป็นการวัดค่าของลิ้งค์ที่ยิงเข้าและออกในระดับ Domain Level แต่ในส่วนนี้จะเกี่ยวเนื่องกับข้อถัดไปด้วย
  • Diversity of Link Source เมื่อก่อนนี้การได้ Backlink จากเว็บ PR สูงๆ เพียงเว็บหรือสองเว็บ ก็ช่วยให้เว็บเรามีอันดับที่ดี และถูกพิจารณาว่าเป็นเว็บที่มีความสำคัญแล้ว แต่ปัจจุบันสิ่งเหล่านั้นได้เปลี่ยนไป คุณภาพของเว็บต้องได้รับพิจารณาถึงความหลากหลายของ Link ที่เราได้มาด้วย ซึ่งก็คือการได้ Link มาจากหลายๆ โดเมน (ที่มี Registration Info แตกต่างกัน) และโดเมนเหล่านั้น ก็ยิง Link ตรงมาที่เราโดยตรง เพราะฉะนั้นแล้ว การมองภาพรวมในระดับ Domain Level จึงมีส่วนสำคัญเช่นกัน
  • Temporal Analysis สำหรับเว็บที่ทำการปั่นให้ได้อันดับดีๆ นั้น อาจจะเกิดเหตุการที่ว่า link ค่อยๆ เพิ่มขึ้นเรื่อยๆ เป็นขั้นบรรได แต่อยู่ๆ ก็มีช่วงระยะเวลาหนึ่งที่จำนวน Link เพิ่มขึ้นเป็นจำนวนมาก และลดลงอย่างรวดเร็วในช่วงเวลาถัดมาเช่นกัน สิ่งที่เกิดขึ้นนี้อาจจะถูกตรวจสอบว่ามีการ ซื้อ Link มาหรือเปล่า และหากเป็นเช่นนั้นเว็บเราก็จะถูกลดค่า Authority ลง เพราะไม่ได้มีลิ้งค์เข้ามาอย่างเป็นธรรมชาติ (Google ต้องการลดช่องว่างระหว่างคนที่มีเงินทำเว็บกับที่ไม่มีให้มากที่สุด)
  • Distribution Analysis ในกรณีที่เว็บเรามี PR สูงและมี Link เข้ามาเยอะจริง แต่กลับมี Link เข้ามาหาเพียงแค่เพจหรือสองเพจ ในขณะที่เพจอื่นๆ ไม่มี Link เข้ามาเลย ตรงนี้ก็จะสามารถถูกพิจารณาได้ว่า ไม่ควรมีค่า Authority สูง อย่าง Wikipedia เองมี เพจต่างๆ มากมายแต่ก็มี Link เข้ามายังเพจเหล่านั้นมากมายเช่นกัน

เรื่อง Trust และ Authority นี้ ผมอยากให้ท่านผู้อ่านจำเอาไว้เพื่อเป็นพื้นฐานในการทำ SEO ซึ่งหากเรามีความเข้าใจพื้นฐานดีแล้ว เราจะสามารถประยุกต์ใช้ได้อย่างมีประสิทธิภาพ สำหรับบทความนี้ก็คงจบแต่เพียงเท่านี้แหละนะครับ

Source : Ngokung2013, By: Seo Master

seo Link Building for New Website Or Business Owners 2013

Seo Master present to you:


Friends & Family Members
When beginning a link building campaign, one very natural way of obtaining links is from friends and family members. I just opened up our family blog and counted all of the friends and family who we have added in our blogroll. The grand total… 41. How hard is it to simply call up (recommended – it’s more personal) or email your family and friends who have blogs or other sites, and ask them for a link to your new website? Not hard at all! In fact, because they are your friends or family members, they will probably do it without hesitation. You can do the same thing with Facebook, MySpace, Twitter, etc.
Add A Blog To Your Domain
Google loves blogs! Google loves fresh content! Google loves internal links! Internal links from other pages of your website are a guaranteed way to help you increase your rankings in the search engines. Adding a blog to your domain is a great way for you to easily add new content to your website on a regular basis. In most cases, adding a blog to your main domain is rather simple and can be done in as little as three clicks of your mouse. Web hosting companies like myhosting.com, Hostmonster, & Bluehost offer one click installations of blog platforms like WordPress or b2evolution.
Adding a blog, posting to it at least once daily, and linking back to your home page and other important pages of your website with keyword anchor text is a great way to gain a lot of internal links. When blogging, you should also link out to other websites that interest you and websites that are in similar industries. You might also consider adding images, videos, polls, etc. Mix things up! Make it look natural! Most important, have fun!
Local Organizations
Just about every city in the country has a local chamber of commerce; mine would be the Lehi Area Chamber of Commerce. Joining a chamber of commerce will not only get you a very good link back to your website, but also provides networking opportunities with other local businesses. Most times, depending on your business, you can generate new leads rather easily by getting to know other individuals and businesses in your area.
Local News
Developing relationships with local newspaper writers and always making yourself available for comments on news stories that involve your industry is a great way to build awareness about your company and get links back to your website (if the newspaper is published online).
Help A Non Profit Organization
You would be surprised how many non-profit organizations are operating in your city and your state. Every one of us has been given talents and certain things that we are good at. I guarantee that there is a non-profit organization that could use your help, whether it is with designing their website or painting the conference room of their new office building. If you offer of yourself and your services freely, you can most likely ask for, and get a link to your website from theirs.
Submit Your Site To Local & Industry Specific Online Business Directories
Anyone studying SEO can usually find a blog post about submitting your website to directories on the Internet. Yes, this is a valuable link building tactic, but before you go crazy and start submitting to thousands of directories, seek out local directories and directories that are specific to your business. Submit to these first and take your time filling out all of the information that they ask for. These will be some of your most valuable links since they are so relevant to your website and business.
Social Bookmarking
You have probably heard the term social bookmarking. You have probably heard that social bookmarking is a great way to build links. Well, it is and it isn’t… You can waste a lot of time social bookmarking if you are submitting to the wrong sites. I limit my social bookmarking to Mixx, Propellerand sometimes Kirtsy. The trick to social bookmarking is to not only bookmark your website, your blog posts, and other things related to your website, but bookmarking lots of different things that interest you. This will make your bookmarking profiles look much more natural to both viewers and the search engines.
Write An Article And Submit To Article Directories
Writing articles and submitting them to sites like Ezine Articles, Article City, and Go Articles, also known as article marketing, is a great way to get links back to your website. Take time to write a very detailed article about your industry and submit it to a few article directories like the ones I listed above. You will get links back to your website by properly using the author resource or bio box at the end of the article. You should tell a little about yourself and your company, while adding keyword rich anchor text links pointing back to your website.
Write And Submit A Press Release
Writing press releases and submitting them to places like PR Web or Web Wire is a great way to generate interest and buzz about your business and also to get links back to your website. This method of link building is a little more difficult than other links that you can get for your website. Writing a press release takes skill… a skill, which the average person, like me, does not have. Press releases have certain requirements that must be met, a certain format that must be followed, and in most cases, need to be super interesting. Not having any of these elements can almost guarantee that your press release will either be outright rejected or not distributed to other news related websites.
Build A Hub Page Or Squidoo Lens
Building a Hub Page or Squidoo Lens is a fun way to get links back to your website. To date, I have built 73 Hubs and 25 Lenses for my own personal websites and hundreds for clients that I have managed. The most effective Hub Pages and Squidoo Lenses are those that have at least 450 words of text about a certain topic or subject, videos, pictures, polls, and other gadgets that are easy to add. You want to make the page as interactive as possible so it provides value for anyone who happens to read it. You are allowed two links to other websites from your Hubs and a handful of links (be conservative, don’t spam) from your Lenses.
Building links isn’t pretty. But, in order to rank well in the search engines, it is absolutely necessary. These are ten excellent ways for new companies or new website owners to start building links to their websites. There are many others and I encourage any of our readers to add to this list by commenting on this post.

Read more: Details

2013, By: Seo Master
Powered by Blogger.