Wednesday, January 7, 2009

10 Useful Techniques To Improve Your User Interface Designs

From http://www. smashingmagazine.com/2008/12/15/10-useful-techniques-to-improve-your-user-interface-designs/
By Dmitry Fadeyev
Web design consists, for the most part, of interface design. There are many techniques involved in crafting beautiful and functional interfaces. Here’s my collection of 10 that I think you’ll find useful in your work. They’re not related to any particular theme, but are rather a collection of techniques I use in my own projects. Without further ado, let’s get started.
1. Padded block links
Links (or anchors) are inline elements by default, which means that their clickable area spans only the height and width of the text. This clickable area, or the space where you can click to go to that link’s destination, can be increased for greater usability. We can do this by adding padding and, in some cases, also converting the link into a block element. Here’s an example of inline and padded links, with their clickable areas highlighted to show the difference:
Obviously, the larger the clickable area is, the easier it is to click on the link because there is less of a chance of missing it. Converting links into block elements makes the text area span the whole width of the container, unless the width is specified otherwise. This makes it ideal for links located in sidebars. We can do it with the following code:
view plaincopy to clipboardprint?
a {
display: block;
padding: 6px;
} a {
display: block;
padding: 6px;
}
Make sure to also add a healthy dose of padding to the links, because converting a link into a block only affects its behavior and width; adding padding ensures that the link is high enough and has some room to breathe.
2. Typesetting buttons
Attention to every detail is what separates a great product from a mediocre one. Interface elements such as buttons and tabs are clicked on many times a day by your users, so it pays to typeset them properly; and by typesetting I mean positioning the label. Here’s a couple of examples of the kind of misplaced labels I sometimes notice:
At first glance they look okay, but notice that the text is placed too high because the lowercase letters have been used as a guide to align the text vertically in the center, like so:
However, if we use uppercase letters as well as lowercase letters with ascenders (”t,” “d,” “f,” “h,” “k” and “l”), the balance shifts upwards, making the label appear too high on the button. In such cases, we should set the type using the uppercase height as a guide — or set it a little bit higher if most of the letters are lowercase. Here’s what I mean:
This gives the whole button a more balanced look and feel. Little touches like this go a long way towards making your interface more polished and satisfying to use.
3. Using contrast to manage focus
Similarly, you can also manage the focus of your visitors’ attention with contrast between elements. Here’s an example of a post headline and some meta information underneath regarding who posted the article and its date:
All the text is set in black. Let’s decrease the contrast between the meta information (the date and author’s name) and the background by putting the text in a light shade of gray:
The highest contrast element here is the headline, so it literally pops out at us. The other elements fade into the background. Here, I’ve chosen the author as the second-most important element, and the date as the least. The font also differs in size and style, but the contrast level can be very powerful. Let’s reverse the order of importance to date, author and headline:
You can see how effective it is in shifting focus: the date now pops out at you, while the headline fades away. This technique comes in very handy for information-heavy websites, such as blogs, forums and social networks, in which you want to make a lot of information easily scannable while still showing a lot of additional things, like dates. Fading the extras allows visitors to easily focus their attention on the most important pieces of text.
4. Using color to manage attention
Color can also be used to effectively focus your visitors’ attention on important or actionable elements. For example, during the US presidential election, pretty much all of the candidates’ websites had the donation button colored red. Red is a very bright and powerful color so it attracts attention, and it stands out even more when the rest of the website is blue or another colder color.
Warmer tones like red, yellow and orange are naturally bright and so tend to attract the eye. They also “expand” when set against colder colors like blue and green. This means that an orange button on a blue background looks like it’s flowing outwards and taking the front seat. Conversely, a blue button on an orange background contracts inward, wishing to stay in the background. Here’s a picture to illustrate:
Here’s a couple of examples of websites that use color effectively to direct users’ attention to the important elements:
Function features a “We’re Hiring” link on its jobs page. To ensure the link is not missed, the designers set it against a red background that pops out from the dark background header, effectively grabbing attention.
Causecast use color effectively. Four bright pink elements pop out at you: the logo, the feedback link, the donate link and the website description message.
Want the “About” blurb on your website to grab the visitor’s focus? Make the background yellow. Want to make the “Join” button stand out? Color it orange. Make sure not to highlight too many elements, though; if you do, they may get lost in each other’s company.
5. White space indicates relationships
One of the most crucial elements in an interface is the white space between elements. If you’re not familiar with the term white space, it means just that: space between one interface element and another, be it a button, a navigation bar, article text, a headline and so on. By manipulating white space, we can indicate relationships between certain elements or groups of elements.
So, for example, by putting the headline near the article text we indicate that it is related to that text. The text is then placed farther away from other elements to separate it and make it more readable. Here’s an example in which white space could be improved:
The text looks all right and is certainly readable, but because the spaces above and below each heading are equal, they don’t separate each piece of text clearly. We can improve this by increasing the white space between each section and also by slightly tightening the line height of the paragraphs:
This results in more clearly defined blocks; we can easily tell which headings go with which pieces of text and can see the separate sections clearly. Good designers often squint or glance at their work from a distance, which lets them see the blocks of elements separated by white space as they merge together. If you cannot see these groups clearly then you may need to tweak your white space.
6. Letter spacing
Web design is pretty limiting for typographers. But while there are only a few safe Web fonts and not a great many things you can do to style them, it’s worth remembering that we do still have some level of control. “Tracking” is a term used in the field of typography to describe the adjustment of spacing between letters in words. We’ve got the ability to do this with CSS using the “letter-spacing” property.
If used with restraint and taste, this property can be effective in improving the look of your headlines. I wouldn’t recommend using letter spacing on the body text because the default spacing generally provides the best readability for smaller font sizes.
Here’s an example of letter spacing in use:
And here’s the CSS code used for the above examples:
view plaincopy to clipboardprint?
h1 {
font-family: Helvetica;
font-size: 27px;
}

h2 {
font-family: Helvetica;
font-size: 27px;
letter-spacing: -1px;
}

h3 {
font-family: Georgia;
font-size: 24px;
letter-spacing: 3px;
font-variant: small-caps;
font-weight: normal;
} h1 {
font-family: Helvetica;
font-size: 27px;
}
h2 {
font-family: Helvetica;
font-size: 27px;
letter-spacing: -1px;
}
h3 {
font-family: Georgia;
font-size: 24px;
letter-spacing: 3px;
font-variant: small-caps;
font-weight: normal;
}
The effect can be useful when you want to craft a more aesthetically pleasing or more original heading. Here, I’ve used only a couple pixels for letter spacing, but already it makes a big difference to the style of the font.
7. Auto-focus on input
Many Web applications and websites feature forms. These may be search forms or input forms inviting you to submit something. If this form is the core feature of your application or website, you may want to consider automatically focusing the user’s cursor on the input field when the website loads. This will speed things up because users can start typing right away without having to click on it. A good example of this is Google and Wikipedia’s websites.
Upon arriving at Wikipedia.org, the search box is already highlighted, ready to accept text.
To automatically focus on input fields, you’ll need a little bit of JavaScript. There are various solutions, and the one you should use depends on the functionality you want to achieve. The simplest way to do it would be to add the following to your body tag:
view plaincopy to clipboardprint?
Your form code should look something like:
view plaincopy to clipboardprint?








Now, every time the page loads, the text field called “form_field” will be automatically selected, ready for input.
The only problem with this is that if your users want to return to the previous page using the Backspace key, they will be out of luck because they’ll just be deleting characters in the input field. Thankfully, Harmen Janssen has another simple JavaScript solution you can find here. Harmen’s script allows the Backspace key to go to the previous page when there are no characters left in the input field to delete.
8. Custom input focus
While the default look of form elements suffices for most functions, sometimes we want something a little prettier or a little more standardized across various browsers and systems. We can style input fields by simply targeting it with an “id,” “class” or plain old “input,” like so:
view plaincopy to clipboardprint?
input {
border: 2px solid #888;
padding: 4px;
font-size: 1em;
background-color: #F8F8F8;
} input {
border: 2px solid #888;
padding: 4px;
font-size: 1em;
background-color: #F8F8F8;
}
What’s more interesting is also being able to style the input field when it’s in focus; that is, the state it’s in when it has been clicked. To do this, we need to attach a “:focus” after the “input” property:
view plaincopy to clipboardprint?
input:focus {
border-color: #000;
background-color: #FFFE9D;
} input:focus {
border-color: #000;
background-color: #FFFE9D;
}
If you’re using custom backgrounds to style your input field, they may clash with some browsers and operating systems’ default focus styles. For example, here’s a screenshot of a custom-styled form clashing with the default blue OS X glow effect:
In such cases, you could also use the “input:focus” property to remove the default styling. The default blue glow in the screenshot above can be removed by disabling the “outline” property:
view plaincopy to clipboardprint?
input:focus {
outline: none;
} input:focus {
outline: none;
}
The blue glow effect will now be gone:
Obviously you would only want to remove the outline if you’re replacing it with your own styling, so that you don’t negatively affect the accessibility and usability of your forms.
9. Hover controls
Some Web applications have extra utility controls, such as edit and delete buttons, that don’t necessarily have to be shown beside every item at all times. They can be hidden to simplify the interface and focus visitors’ attention on the main controls and content. For example, these hover controls are used in Twitter when you hover over messages:
These hover controls can be achieved with some simple CSS code, without any JavaScript. Simply style the with the controls when its parent is in a hover state. Here’s the code to hide and show the controls (using a with the class “controls” inside a with the class “message”):
view plaincopy to clipboardprint?
.message .controls { display: none; }
.message:hover .controls { display: block; } .message .controls { display: none; }
.message:hover .controls { display: block; }
When you hover over the “message” , the “controls” inside it will appear, along with all of its content, giving you the same functionality as shown in the Twitter screenshot above.
There may be an issue with accessibility because screen readers may not be able to read the hidden . There are plenty of other ways to hide the inner , such as offsetting it with a negative margin that takes it off the page (e.g. “left-margin: -9999px”), coloring its text the same color as the background or simply placing another on top of it.
This technique should of course be used with restraint because you don’t want to hide your important controls; but if used correctly, it can be useful for cleaning up your interface by removing those extra utility links that you don’t want to show up at all times.
Note that this doesn’t work in IE6, so you’ll need to override the hiding property in your IE6-specific style sheet or, if you don’t have one, simply use the following IE6-specific code inside the section of your code:
view plaincopy to clipboardprint?

10. Verbs in labels
You can make options dialogs much more usable by thinking through the labels you use on buttons and links. If an error or message pops up and the options are “Yes,” “No” and “Cancel,” you have to read the whole message to be able to answer. Seems normal, right?
But we can actually speed things up by using verbs in the labels. So, if instead of “Yes,” “No” and “Cancel,” we have “Save,” “Don’t Save” and “Cancel” buttons, you wouldn’t even need to read the message to understand what the options are and which action to perform. All the information is contained in the button labels.
Using verbs in labels on buttons and links makes the options dialogs more usable because the labels contain all of the information the user needs to be able to make a decision.
To Conclude
Hopefully, you’ve found a few new techniques that will be useful in your work. As always, using them effectively comes down to restraint and thoughtful implementation. For example, controls that appear on hover may clean up your interface, but they will also increase the learning curve because people may not notice these controls at first. But showing all controls at all times may not be the best strategy either because users would need to scan more things to find what they’re looking for.
Striking the right balance between what you show and what you hide is a delicate art and is completely in your hands as the designer. Don’t use a technique just because it exists: use it if it makes sense in your context.

Saturday, December 20, 2008

100 Excellent Free WordPress Themes

from smashmagzing
High-quality WordPress themes always come in handy. Whether you are looking for some design inspiration or professional coding solutions — in both cases you can learn a lot, you can apply them and you can build customized designs upon them without reinventing the wheel all the time.
In this article we present 100 free high-quality WordPress themes. Together with hundreds of other designs, these themes have been manually selected, installed and tested over the last weeks. They all can be downloaded, customized and used for free in both personal and commercial projects. Links to demo-versions provide a direct preview of a theme.
Please notice that the listed WordPress themes are presented in 8 sections: vibrant themes, simple & minimalistic themes, magazine style, grid-based, clean and legible, advanced, experimental, photoblog & videoblog.
You might also want to take a look at our previous selections:
83 Beautiful WordPress ThemesAn overview of beautiful, but rather unknown themes you might have missed.
21 Fresh, Usable and Elegant ThemesA quite pretty selection of elegant yet well thought-out themes.
10 Fresh and Clean ThemesThe beauty of these themes lies in their clean look supported by a legible content presentation.
13 Wordpress Magazin-Themesfrom Dr. Web Magazine
You want them — you get them. This page may take a while to load; therefore please be patient and don’t hit “Reload” too often.
1. Vibrant WordPress Themes
PFO Stripes [ Demo ]

PFO Business [ Demo ]

FFF Lemon Twist (Demo and Download)

Several3 [ Demo ]
Adreu r2 [ Demo ]

Blogging Pro Theme [ Demo ]

DM-Bloodless [ Demo]
Illacrimo [ Demo ]

Elixir

Insense [ Demo ]

Zeke 1.0 [ Demo ]

jsThemeComes with a number of themes.

Smashing Theme [ Demo ]

DarkRed [ Demo ]

Gossip City [ Demo ]

Resurrection
Blue Steel

River Run

Yoghourt

Midsight Red & Brown[ Demo ]The original page was virus-infected, the link is replaced with its text-version until the site will be cleaned.

Fluid Yellow Black

xPlosive Reloaded [ Demo ]

Red Stamp [ Demo ]

Dilectio [ Demo ]

Fauna

dfMarine [ Demo ]

Curved WordPress Theme [ Demo ]

Accord WordPress Theme [ Demo ]

2. Simple, Minimalistic Themes
iA

Modicus 0.2

Modern [ Demo ]

Documentation [ Demo ]

Jentri [ Demo ]

miniBits [ Demo ]

GIMP Style

Dayvan Theme [ Demo ]

Tree Theme [Demo ]

DePo Clean WordPress Theme [ Demo ]

BlueBird 1.0

Balance
Paisley [ Demo ]

Autumn

Brilliance [ Demo ]

Pixelate

Pockett [ Demo ]

Artuell [ Demo ]

Plane Jane

Briny

Elite

Blue Moon

3. Magazine Style WordPress Themes
WP Premium [ Demo ]

Modicus Remix

Morning After

Futurosity Magazine [ Demo ]

Structure Wordpress Theme [ Demo ]

Visionary Wordpress Theme [ Demo ]

WP Polaroid [ Demo ]

Overstand Theme

Jello Wala Mello Wordpress Theme

4. Grid-Based WordPress Themes
Gridline Lite [ Demo ]

Refreshed: Grid Focus

5. Calm, Clean and Legible Themes
Sharpfolio

Coldblue

Cubismo [ Demo ]

Yomel [ Demo ]
Lust Wordpress Theme

Abstractia [ Demo ]

HemingwayEx [ Demo ]

Blubbr

Ayumi [ Demo ]

Greenway 3C

K2-U3 [ Demo ]

OldLamp [ Demo ]

Prima [ Demo ]

ProSense

Insan [ Demo ]

Sakeena [ Demo ]

Margot

The Azure Hut

Livegreen [ Demo ]

Simpress [ Demo ]

Glued Ideas: Subtle [ Demo ]

Gluttony [ Demo ]

6. Advanced WordPress Themes
ExtJS Wordpress Theme

Lounge2

Prebuilt

NeoclassicalA 3-column template system with rotating header images.

7. Experimental Themes
Bonsai, Red Growth LiveBig typography dominates.

Trevilian Way [ Demo ]

BrainTied 1.0 [ Demo ]The front page displays only the list of recent posts.

Tropical Grunge [ Demo ]

Aspire

Isolated Theme [ Demo ]

Supermini
FontellaThe front page features only the main/recent post of the weblog.

ASCII Themes

Retro Mac OS X [ Demo ]

8. Photoblog & Videoblog Themes
Tumblelog For WordPress [ Demo ]

Nautilus

Nishita [ Demo ]

9. Sources and Further Resources
WordPress Themes That Don’t Suck
BlogPerfume WordPress Themes
48 SEO WordPress Themes
Skinpress.com
WPDesigner.com
Clazh.com
Best WordPress Magazine Themes
ScribbleScratch.com
Photoblog Themes

Tuesday, December 16, 2008

Blogging For Website Traffic

by: Richard Legg
Nowadays, it seems that everyone and his cousin have taken to blogging. This form of online self-expression has slowly but steadily taken over the World Wide Web to become somewhat of a phenomenon in recent years. Some people use blogs as their personal journals, some may see them as an outlet for their creative work, and others may just want their own personal place in cyberspace to share thoughts and ideas. Now, a quick question for the Internet businessman. If you have a blog, can you use it to boost your site's exposure and drive more traffic to it? A blog is great for sharing ideas and posting about things you like or don't like, but can a blog help your online business succeed? The answer is a definite YES. Your blog can do wonders for your website, but it all depends on the way you utilize its potential power. I'm going to teach you a tried and proven method that has been effective for other website owners, and this method is applicable for any type of blog. You will just need a lot of creativity and some time to make it work. First thing you have to keep in mind is that most blogs on the Web have a community feel to them. You may think that your blog is your own, since you're the one who installed and developed it. And you may be right. But your blog is also connected to other blogs on the same site. You may also be connected to other blogs that are using the same blogging software as you. This situation guarantees that sooner or later, a person will land on your blog and be able to see all that you have to say. This can also mean that your blog is now getting free advertising within the blogging community. I don't think you need me to tell you how beneficial this can be for your site's traffic. However, you do have to keep in mind what you're posting as your blog's content. If all you're doing is making posts that promote your products or your business, then you're dead. Believe me, that is not the recommended way to use your blog. Have you seen the Internet lately? It's already overflowing with loads of advertisements for products and services. Be different. Your visitors need a good reason to keep coming back to your blog. Use it to give expert and knowledgeable information about your line of work to your readers. If you're selling a product on your site, talk about it on your blog, and don't just post a measly advertising blurb. Let's say you're selling power tools on your website. You can write reviews and other useful posts about the kinds of tools you have on your site. What you're doing is providing some insight for your potential customers about the tools you're selling. These blog posts will then be able to generate confidence in your readers and encourage them to actually buy the products. Another advantage of having a blog is that it makes it easier for interested buyers to get access to the seller (that's you). Usually, readers of a particular blog post are allowed to leave comments on what they've just read. For example, you've just finished a review for the new Ajax power drill. Whenever a reader comes across it and has a question regarding that product, he or she can easily leave a comment. You can then see the questions and post your answers. See? You can now connect with your readers and potential customers personally. This make you much more approachable, as compared to the faceless entity behind the impersonal commercial website. In addition, your readers will also have the option of subscribing to your blog feeds via RSS or to your newsletters, so they can be immediately notified about any new posts you make. If you have established a reputable standing in your niche, a long list of eager readers will soon be waiting for your next post, and lots more will be coming to your website.
from http://www.articlecity.com/articles/site_promotion/article_1702.shtml

Inexpensive Tips For Getting Website Traffic

by: Richard Legg

You can get a lot of website traffic without having to spend a lot of money. If you want to develop a busy and profitable website for your online business, there are a lot of techniques for getting website traffic without it being expensive. Some of these cheap website traffic techniques include article directories, SEO, blog posting and even forum posting. Among these methods, one of the most practical and most effective is submitting articles to article directories. These articles should contain a link or two back to your own site, which can help you increase your site traffic from readers who may be interested in seeing more of what you’re offering. There are already several excellent article directories available for your submissions. As long as your articles remain in the directories you submitted them to, this method will be one of the best and cheapest ways to pull in traffic. Using SEO, or search engine optimization, is another inexpensive yet very effective way for getting traffic to your website. By using proper search engine optimization, your articles and your website’s overall content will become more search engine friendly, as well as your website. Include your keyword in the domain name of the website that hosts your articles. Also include keywords in the first paragraphs of your pages, as well as the title of the page itself. These SEO techniques will help your site get better exposure with search engines, and your articles will rank higher on search results. Blogging is now becoming more popular than ever before, and you should take full advantage of it. More and more online businessmen are using blogs to promote their products and services, and it just makes perfect sense to follow suit. There are several good blogging sites on the Internet that allow people to sign up and create a blogging account with them for free, such as Blogger or Wordpress. Create your blog and link your home page to it. Updating your blog regularly will allow it to become more relevant to search engines, and as a result, it will help to drive more traffic to your site. It would help a lot if your articles and posts contain the appropriate keywords. Another inexpensive website traffic technique that you can use is to join and participate in forums. Finding a forum that is related to your website’s content is even better. You can then easily post discussions, answers, and even start threads that can be useful to other forum members. You can pull in traffic by making entertaining or informative posts, since you’ll develop a reputation for being an authority on certain subjects. And don’t forget to have a link to your site in your signature file or your member profile. See? You can get a lot of website traffic without spending a lot of money, just by following these techniques. Remember, effective usage of relevant keywords in your posts and articles, proper SEO methods, article submissions, blogging, and forum posting can all become invaluable but inexpensive tools for driving traffic to your website.
from http://www.articlecity.com/articles/site_promotion/article_1703.shtml

Good Website Content

by: Gally Reznor
Reading a website is not similar to reading a book or a newspaper, therefore before you start spilling money on campaigns be sure your site is built in accordance with internet writing standards. Lets talk about few simple rules you don't want to break when building a website: Don't waste your visitors time Time is money. Most people decide whether they are interested in what the website has to offer in just to seconds. Therefore make sure your landing page provides the most crucial and appealing information about your business. Number one time waster is a heavy loading pages with lot's of flash animations and pictures. Make sure your web pages are not too heavy otherwise you might loose your visitors before they entered your website. Most of the visitors need to find what they are looking for fast, otherwise they look for it elsewhere. As a webmaster you must make sure your data is well categorizes and divided to relevant pages , categories, headlines and sub-titles. A visitor must be able to navigate your website easily and successfully. Avoid too much "Special affects" By this I mean don't include too much flash movies and avoid using music if you don't have to. As we mentioned earlier, Flash has a large loading time which damages viewer experience, besides too much flash may be annoying and search engines can't read it. Music is a great thing, but somehow music and websites do not fit too well. If you want to put some background tune anyway, make sure a user can silence it quickly and easily. Or in contrary , let the user click "Play" and begin the music when he decides. Pop-ups and new pages If you have links in your site , I strongly advise you not to use the pop-up option and not to open these links in new window. Seemingly pop-ups and new windows are a very good idea if we don't want the visitor to navigate from our website but many years of experience shows that users prefer to click "Back" buttons. As to pop-ups , most of browsers tend to block them , and you don't want to waste your viewer time on enabling pop-ups. Text Use standard fonts which are supported by all browsers, like Arial and Times New Roman. You don't want your viewers to get gibberish and go away from your website. Don't use very small or very large fonts . You don't want your pages to smear for miles and you don't want to scare away people with poor vision .

from http://www.articlecity.com/articles/web_design_and_development/article_1446.shtml

Friday, December 12, 2008

How to Maximize your Page Rank

by: Gally Reznor
Why care about the Page rank? As mentioned in previous articles, Page Rank is one of the familiar variables in determining appearance in SE results. Although today the importance of page rank has been descended, and sometimes we see pages of PR 3 or 4 getting to first places in Google, Page Rank is one of the variables SEO's often deal with because this is the variable we know a lot about and can approach sensibly. The second good reason to learn about PR is using it to emphasize important pages of your website, like the Homepage ( you know how annoying it is when SE presents some negligible page of your website higher than the Homepage) What is PR? PR ranges from 1-10 and indicates the number and quality of page incoming links. Page Rank is calculated as follows: PR(A) = log10((1-d) + d (PR(T1)/C(T1) + ... + PR(Tn)/C(Tn))) when : 0 PR(T1) – Page rank of page T1 linking to page A. T1, ….,Tn C(T1) – number of outbound links in page T Notice that the 1-10 scale is accepted because of logarithmization of the equation. Therefore , each group of page rank ( PR1,… PR10) is not equal in size and getting to higher PR group is getting harder with every step. This article deals with page rank maximization techniques: PR0 – Page rank zero This rank is usually given to: new pages pages with very few incoming links websites being caught using Black Hat Strategies to promote their website. Webpages with PR0 can harm your website in case that one of your pages links to PR0 page. Although, if PR0 page links to your page , your pages is not hurt nor benefited because Google assumes you don't have absolute control over your incoming links. Even so , you may exchange links with PR0 page in case that The PR0 page doesn't contain hidden text or other forbidden elements of black hat SEO The page is new and therefore gets zero ranking. PR leakage Although PR depends on your incoming links, linking to other websites can cause you PR leakage, therefore use only necessary links to other websites. Linking to pages inside your website does not cost you PR therefore you can do it freely. Make sure every page in your website links to other important pages since every link has its contribution. Leaving Dead end pages wastes this contribution. Use PR to emphasize important pages: Creating links smartly to most important pages of your website, like Homepage, gives it PR boost and helps emphasizing its importance in front of less important pages in the website. This is the most popular and beneficial link scheme emphasizing your homepage: All pages in the website link to Homepage (first priority page) Page of x priority is not linked to other pages of x priority but only to Homepage, page of x+1 , and X-1 priority. (for example, categories are not linked between them). No jumping between pages in non hierarchic order : for example Page priority 1 doesn’t link to page priority 3 , and page of same priority are not interlinked. If we count the relative distribution of PR between all the pages, in this scheme, Homepage gets the highest rank. If we link the categories , Homepage rank descends and category PR raises a little. If we link all the pages at the website to each other, all of them get the same but low PR. To get the highest Homepage PR we must link all the pages to Homepage only and Homepage must link to all the pages. Exchanging/ Purchasing Links Incoming link is more effective if it comes from high PR page. Page with few links is better contributor than page with lots of links (in case they are of same PR) Exchange links only with well ranked websites because exchanging links cause PR leakage. This leakage must be weaker than link contribution otherwise the exchange is not beneficial. Don't exchange pages with PR0 pages because in best case scenario it doesn’t help you. (Unless you expect this page to be very popular in short period). ww.articlecity.co www.articlecity.com

Make Your Own Website: Achieve Success With Your Site

by: Tem Balanco
There are many reasons for you to make your own website. You may want to sell a product or service, or you may want to share your thoughts and dreams with the world. No matter what you want to do online, you can design a website (http://www.buildyoursite.com/) to do it. When you are thinking of making a site on your own, there are a few things to think about. The first thing you will want to decide before you make your own website is what you want to accomplish by doing so. This is the most important thing you can do when you are ready to make a website (http://www.buildyoursite.com/). Knowing the purpose will allow you to make any other decisions more clearly. After you have completed these stages, you need to locate the company that will be your web host. This company will provide several important pieces for you. At a minimum, they will be responsible for registering your name and associating it with an appropriate web address. In general, you will be running your service from their space, so the host takes over administrative and physical security responsibilities. If you choose to use their equipment, you must sign an agreement concerning additional charges should you need more bandwidth or disk space than the minimums. Dedicated web space is space that you paid for. There are no advertisements on dedicated web space unless you want there to be. Unlike free hosts, paid hosts will not insert ads onto your site. If you make your own website (http://www.buildyoursite.com/) and pay for the hosting, therefore, you have more control. Choosing your own domain name allows you to personalize the site even further. There is a ton of information about website building online. Some companies offer website building tools, while others only use HTML code. You will be able to find lots of HTML tutorials online if you are interested in learning. Doing a quick search in your favorite search engine will find hundreds of links to websites that offer these tutorials. The sky is the limit from here. You will be able to create a personalized and snazzy site. How it ends up is up to you. You can put as much time into the project as you want. Either way, when you make your own website, you will end up with something that is entirely your own. This is almost a form of art.
http://www.articlecity.com/

Web design & Web develop © 2008 Por *Templates para Você*