Favicon add to Your site

What’s a favicon? A favicon (favorites icon) is an icon associated with a blog/site. Most popular browsers display favicons as 16×16 pixel icons next to the URL in the address bar, next to the title in tabs, and next to the title as well in bookmarks. In conjunction with the new year, I have added […]

What is CPA (Cost Per Action)?

What is CPA? CPA stands for Cost per Action. What the hell wants to say? Well, the answer is short and dirty. CPA Networks work as a mediator between you and the company (the advertiser). These companies are willing to for information and action. Sometimes the introduction of an e-mail address or a ZIP code […]

80 SEO Steps

Website analysis Keyword Research Adding Emphasis with Header Tags Adding Emphasis with Tail Tags Bold, Italic effect to main keywords Canonicalization Competition Analysis CSS Validation Google Base Feeds H Tags Optimization (Eg: H1, H2, H3) Header Tag Optimization HTML Code Clean Up & Optimization Image & Hyperlink Optimization In depth site Analysis Link Validation Meta […]

Top 50 Article Directories By Traffic and PageRank

URL Alexa Rank PR No Follow 1. ezinearticles.com 131 6 2. articlesbase.com 430 6 NF! 3. buzzle.com 1,266 5 4. goarticles.com 1,611 6 5. helium.com 1,926 6 6. articlesnatch.com 2,416 4 NF! 7. articledashboard.com 3,039 5 8. articlealley.com 3,149 5 NF! 9. ideamarketers.com 4,204 3 10. selfgrowth.com/articles.html 4,289 6 11. amazines.com 4,310 2 12. searchwarp.com […]

CSS Borders

Borders can be applied to most HTML elements within the body. To make a border around an element, all you need is border-style. The values can be solid, dotted, dashed, double, groove, ridge, inset and outset. border-width sets the width of the border, which is usually in pixels. There are also properties for border-top-width, border-right-width, […]

CSS Margins and Padding

margin and padding are the two most commonly used properties for spacing-out elements. A margin is the space outside of the element, whereas padding is the space inside the element. Change the CSS code for h2 to the following:   h2 {         font-size: 1.5em;         background-color: #ccc;         margin: 1em;         padding: 3em; } […]