Outsourcing Projects

Wednesday, July 2, 2008

Study: Unpatched Web Browsers Prevalent on the Internet

Only 59.1 percent of people use up-to-date, fully patched Web browsers, putting the remainder at risk from growing threats from diligent hackers, according to a new study published by researchers in Switzerland.

The study, published Tuesday, is one of the most comprehensive analysis of what versions of Web browsers people are using on the Internet. The study was conducted by researchers at The Swiss Federal Institute of Technology, Google and IBM Internet Security Services.

Web browsers are often a weak link in the security chain, as software vulnerabilities can make it easy for hackers to gain control of a PC. When that happens, hackers can perform malicious acts such as stealing personal data or turning PCs into spam-spewing drones.

What the researchers found is that although software vendors provide patches for security problems, it can take days, weeks or months before people update their applications. In the meantime, those users are at risk.

But it's not entirely the fault of users, since Web browser vendors haven't exactly made patching easy, said Stefan Frei, a doctoral student at the institute, which is known as ETH Zurich, and one of the report's authors. The Web browser is still fairly young technology, and the industry has yet to settle on a dominant, well-tested design, he said.

Read More Article...

Monday, June 30, 2008

Moving to the Mobile Web

Thanks in no small part to the iPhone, the mobile Web is about to get a lot more crowded, and a lot more useful. The iPhone's interface has made it easier to read Web pages that were originally designed for desktop browsers. However, site owners who want to take the mobile Web a step further have found ways to improve the user experience in terms of both content and context.

Wait. Scroll. Scroll. Tap-tap. Wait. Wait. For many years, that was the typical experience of someone surfing the Web using a mobile phone or PDA, at least in the U.S. Although some content providers offered stripped-down versions of their sites specially designed for mobile users, most did not, and reading a page designed to be viewed on a PC on the small screen was about as much fun as sitting in a dark room reading a newspaper by flashlight.

Today, the mobile Web environment is in a period of rapid change, thanks in no small part to Apple's (Nasdaq: AAPL) iPhone. From the phone's introduction in June, 2007, through March, 2008, 5.4 million iPhones have sold, and to date developers have created more than 17,000 sites or "Web applications" optimized for the device.

But this isn't a story about the iPhone, per se; it's a story about designing for the mobile Web. The iPhone was just a catalyst of sorts, bringing buzz, investors and new technology to the sector. As a result, the mobile Web design and customer experience bar has been raised.

Read More Article...

Web Designing Project - Re-Programming of Website

Looking to work on Web designing Project? Find here new projects everyday.

ITMatchOnline.com is the easiest way to find right partners across the world.

Project Details:

Type : Project

Id : 86305149

Category : Web Design and Development

Title : Re-Programming of Website

Estimated Budget : 100-500 USD

Description:

We are US based company looking for service provider for redesigning of website. We are looking for service provider who can re-programmed our site with media(mp3 and videos) to play in player and so as the site to play/load better on all platforms and browsers. The required format will be HTML and Flash for media browser. Our approximate budget is in between 100-500 USD will be paid by pay pal after the completion of the work. Interested service providers are requested to send their proposal as soon as possible.

Country :United States

Status : Closed

Are you interested to work on this project? Post your contact details Now! Click Here

Sunday, June 29, 2008

Web Design Tips

The difference between a good web designer and a great one is the ability to know how to take short cuts and save time without compromising the quality of work. Pixelsurgeon’s Jason Arber has put together 20 top tips and tricks you should be using to give your work that all-important professional edge.

1. Planning

When you’re itching to get started, it’s easy to overlook the most obvious step: planning. Whether it’s drawing wireframes and site diagrams in OmniGraffle or Visio, or even on a scrap of paper, you’ll save time by having an overview of your design at the site and page level before you start building. Obvious errors can be detected and solved before it’s too late to go back and it makes explaining your ideas to clients and colleagues a lot simpler than waving your hands in the air.

2. Do it by hand

Although there are some excellent tools around for building web sites, such as Adobe GoLive and Adobe (formerly Macromedia) Dreamweaver, professional code monkeys prefer to code by hand. Are they crazy masochists? Quite possibly.

There’s only one way to learn HTML, and that’s to roll up your sleeves and get your hands dirty with some actual code. But fear not: HTML has one of the easiest learning curves you’ll ever come across and you can create a basic web page with only a couple of lines. Writing code by hand also ensures that you write the leanest code possible, which is the ultimate aim of all HTML geeks.

Don’t throw out that copy of GoLive or Dreamweaver just yet. Both applications have excellent code writing environments, and have useful features, such as collapsable blocks of code and split views so you can code and see the results at the same time. If you want to try the code-only route, then any text editor that can save in the basic .txt format should do, but Mac users might want to check out Bare Bones Software’s BBEdit, and Windows users should give the freeware AceHTML editor from Visicome Media a whirl.

3. Stylesheets: importing vs linking

There are two ways to attach an external stylesheet to your HTML page, and not all browsers understand both methods. This can be used to your advantage to feed one stylesheet to modern browsers and another to Netscape 4.x, which would otherwise choke on more complex CSS.

Cascading stylesheets are designed to flow over each other. The secret is to create a simple stylesheet that works in Netscape 4, with more complex CSS relegated to an additional stylesheet that’s attached using @import, which Netscape 4.x will ignore:


4. Smarter gradient backgrounds

CSS gives you a lot of control and flexibility over the tiling of background images. And the great thing is that tiled images are not limited to the Body background but can also be applied to any DIV, block level or inline element.

Images that tile conventionally or just along the x or y axis can be set to scroll with the page or remain fixed while the rest of the page scrolls over it. Backgrounds can also be offset. This means that it’s easy to create a vertically graduated background that never repeats no matter how long the page is, using graphics that are only a few kilobytes in size.

Using the following code, the background.png file need only be as tall as the gradient and one pixel wide. This example assumes that the gradient fades into white, but the backgroundcolor attribute could be any value.

body { background-color: white; background-image: url(background.png); background-repeat: repeat-x; }

5. Commenting

When you come back to a site that you designed months ago, there’s nothing worse than trying to figure out what you did and attempting to untangle a spaghetti of code. Do yourself (and anyone else who wants to check out your code) a favour by putting comments in your HTML. Comments might add anything from a few bytes to a kilobyte or two to your page, but the time savings are invaluable.

Commenting also encourages you to keep your code tidy by breaking it into logical chunks. Some coders even use comments to create a table of contents for the page, which is only visible in code view.

Be aware that HTML and CSS use two different kinds of commenting, so you may want to learn the difference.

/* CSS comments are enclosed by a forward slash and an asterisk. */

6. Use simple PHP to build sites

There’s no need to become a PHP expert to start using it in your site. If your server supports PHP, you can quickly and easily use server side includes to build a library of commonly used elements, inserting them into your web page with a simple link. This is great for elements like menus, which can exist as a single instance, and means that if you add a new menu item or change the design, you just need to change the include file, which will then update the whole site.

Includes are simply snippets of HTML code such as a table or unordered list. The page calling the includes should end .php and the includes are inserted using the following simple code:

7. Set fonts using ems

Designers love specifying type sizes in pixels because it corresponds easily and naturally with what they do in Photoshop. But as a type size specification for the web, pixels have one major disadvantage: they can’t be resized in Internet Explorer. As monitor resolutions increase, it’s not only the visually impaired who may want to increase the font size in your design, so what’s the solution?

The answer is to specify type in ems. If you’re unfamiliar with the unit, an em is roughly the width of a lowercase em in a font, and using a browser’s default internal stylesheet, an em is roughly equivalent to 16 pixels. Set the font size attribute in the body tag to 62.5 per cent like this:

body { font-size: 62.5% }

This makes one em roughly ten pixels (16 x 62.5% = 10). Now you can equate pixel sizes to ems. For example, type that is set in 12 pixels could be expressed as 1.2em; 9 pixels becomes 0.9em and so on. What’s more, both the designer and user are happy.

8. IE Box Model Hack

Sooner or later you’ll come across an important bug in Internet Explorer that incorrectly calculates the width and height of block level items by including padding values within the box’s dimensions, rather than adding it outside the box. This can wreck layouts. The solution is known as the Box Model Hack, which uses another bug in IE to force it to use tags that other browsers ignore. If you have a div validly specified like this:

div {_ width: 100px;_ padding: 5px;_ border: 5px solid #fff;_ }

You’ll end up with a box that’s 120 pixels wide in most browsers, but only 100 pixels wide in IE. The easiest solutions is the box-within-a-box method, which places one div inside another:

div {_ width: 100px;_ }
div .hack {_ padding: 5px;_ border: 5px solid #fff;_ }

This is applied in the following way:



Your content goes here

9. Space saver

Nobody likes building forms in HTML, especially as browsers insist on adding padding around them for no reason. Simply add the following CSS to your stylesheet:

10. Test, test and test again

While Internet Explorer still dominates the browser market by a huge percentage, its lead is being gradually eroded by other browsers such as Firefox and Opera. There are also plenty of people out there still using archaic browsers like pre-Mozilla versions of Netscape.

It’s virtually impossible to design great-looking web sites that work in all browser versions, so it’s best to decide which browsers you’ll support. Mozilla-based browsers, WebKit-based browsers (such as Apple’s Safari), KHTML-based browsers (such as Konqueror), Opera and Internet Explorer versions four and higher are generally considered a safe benchmark. However, you should still be a good net citizen by ensuring that your code degrades gracefully, so that even unsupported browsers can experience your site – even in a limited form (see tip 14).

11. Format fundamentals

In the old days it used to be simple. If the image contained flat colours like a logo, use a GIF. If it was photographic, use a JPEG. There’s also an overlooked third format, PNG (pronounced ‘ping’) that comes in two flavours: an 8-bit version containing 256 colours, like GIFs, and a 24-bit version with alpha channel support allowing for variable transparency.

The bad news is that Internet Explorer doesn’t support PNG’s alpha channels without resorting to a complex hack. However, 8-bit PNGs generally compress much smaller than the equivalent GIF version. Unless you need animation, which PNGs can’t do, PNGs can replace GIFs in most situations, resulting in an overall file size saving.

JPEGs usually create smaller files than 24-bit PNGs, so unless you’re taking advantage of PNG’s alpha channel transparency using the hack then JPEGs are still the best format for continuous tone images.

12. The ‘title’ and ‘alt’ attributes

Ensure that all your images make use of the alt and title tags so that screen readers for the visually impaired can correctly parse your page:

”logo”

13. The correct format for pseudo classes

For text rollover effects, it’s important that the pseudo classes are in the right order, or they won’t work correctly in all browsers. The correct order is:

a:link { color: blue; }
a:visited { color: purple; }
a:hover { color: purple; }
a:active { color: red; }

14. Use semantic mark-up

The idea behind semantic mark-up is to separate the content of your web site from its appearance so that it degrades gracefully. Ideally, if you were to remove the stylesheets, your web site should still work. It might not look pretty, but it means that users with older browsers, will still be able to get meaningful content from your site.

The positioning, styling and a certain amount of interactivity can then be added with stylesheets and CSS-P.

15. Favicons

Favicons are the little 16x16 pixel icons that appear in your favourites lists and the title bars of web sites. They’re quick and easy to add: save a graphic in .ico format (Mac users may want to consider using Graphic Converter as Photoshop doesn’t support this format) and put it in your site’s root folder. It’s as simple as that.

16. Change capitalisation using CSS

If you need something written in capitals, such as a headline, rather than rewriting the copy, let CSS do the donkey work. The following code will transform all text with an h1 attribute into all capitals, regardless of format.

h1 { text-transform: uppercase; }

17. Wrapping text around images

For a quick and dirty way of wrapping text around images, use the image’s align attribute to push it to the left or right. Rather than jump below the image, text should now flow along the edge.

18. Universal character sets

Character sets are an important part of a web page’s definition, but they’re probably the least understood component. Character sets, which are defined in a web page’s invisible head section, tell the browser what method is being used to encode the characters. A charset ISO Latin 1 (also known as ISO 8859-1) will render the code it finds using a basic Western alphabet, but a charset of Shift JIS will attempt to render any characters it finds as Japanese.

With so many competing character sets, problems can occur, especially when using the MS Windows character set (which contains certain characters that may be replaced by a blank space on other operating systems) or when several languages need to appear on a single page.

The answer is to use a single universal character set that’s able to cover most eventualities. Luckily one exists: UTF-8, which is based on Unicode. Unicode is an industry standard that’s designed to enable text and symbols from all languages to be consistently represented and manipulated by computers. UTF- 8 is rapidly becoming the charset definition of choice, and should be included in your web page’s head like this:

19. Print styles

When people print web pages, often they’re not interested in your flashy graphics: they just want a simplified version of the page. Using CSS it’s possible to create a separate stylesheet that only affects printed versions of your site, rather than having to create a new HTML page or adapt an existing one. You add a print stylesheet in exactly the same way that you would add a regular stylesheet to your page:

or

This ensures that the CSS will only apply to printed output and not affect how the page looks on screen. With your new printed stylesheet you can ensure you have solid black text on a white background and remove extraneous features to maximise readability.

20. Learn from others

Finally, a quick and simple tip: learn from great sites built by others. Any site’s HTML is easily accessible by viewing a page’s source code. See how others have done things and apply their methods to your own work.

Source : http://www.netmag.co.uk/

Friday, June 27, 2008

Go Daddy 30 Million Domains!

Go Daddy.com, leading provider of webhosting and domain registrations, has announced that it has just reached a major milestone, 30 Million domains.

This Internet-first reflects thriving conditions on the Web and at GoDaddy.com.

While reports of a wavering economy and surging oil prices dominate the news, Go Daddy’s business is booming. Why? More and more people and businesses are moving to establish their own space on the Internet.

Right now, Go Daddy is registering, renewing and transferring names used for Web site addresses to the tune of about one every second of every day. This flies in the face of critics who, years ago, suggested the surge to register domain names was all but over.

Go Daddy is also racking up substantial e-commerce numbers, which align with industry analyst predictions. Forrester Research forecasts online spending in 2008 will increase by 17 percent. Go Daddy expects even higher numbers. The Web leader’s Quick Shopping Cart is a key e-commerce tool because it makes setting up an online store easy and affordable. Projections, based on recent months, indicate a 72 percent increase this year over last, in terms of revenue generated by customers with Quick Shopping Cart enabled Web sites.

“These numbers really demonstrate how the Internet is alive and well, even in these rough financial times,” said Go Daddy CEO and Founder Bob Parsons. “We knew from the start… helping make it easy and affordable for people to get online would make a difference. That’s why we developed products our customers wanted, priced them right and then backed them up with personal customer service... and, well the rest is history.”

Ironically, the 30 millionth domain name, RulesOfSaving.com, could be viewed as a sign of times, as far as the struggling U.S. economy or as a nod to Go Daddy’s low price points. While many registrars charge more than Go Daddy, some have even raised prices in recent days.

Read More Article...

Thursday, June 26, 2008

Web Design: Tips on Using Color

Of all the choices you make when designing a Web site, one of the most important is the colors you use. Without reading anything on a Web site, simply seeing the colors it uses can tell you a lot about its products and the company behind it.

That is, of course, provided the designers chose colors that would deliver the right message to the site's visitors. In this article I'll talk about color, how to use the color wheel to find color combinations, and I'll introduce you to some tools that can help you choose colors for your Web site.

Back to Grade School

When you were at school you learned that the three primary colors were red, blue and yellow. When you mix these primary colors together, you get what are called secondary colors — mix red and yellow to make orange, mix red and blue to make purple and mix blue and yellow to make green.

Mixing the secondary colors gives you tertiary colors which are yellow-orange, yellow-green, red-orange, red-violet, blue-violet and blue-green. The name of each tertiary color is derived from the colors that are mixed to make it, with the primary color first.

Read More Article...

Web Designing Tender - Municipal Website Designing

Looking to work on Web designing Tender? Find here new projects everyday.

ITMatchOnline.com is the easiest way to find right partners across the world.

Project Details:

Type : Tender

Id : 10987335

Category : Web Design and Development

Title : Municipal Website Designing

Estimated Budget : Need Best Proposals

Description:

We are Canada based organization. We are looking to develop a Municipal Website and invites Proposals from well established and experienced Website Consultants.

Our Vision: a website which can significantly improve communication between us and our many clients. The site must be visually attractive and easy to navigate. It must provide - at the onset - a moderate, yet comprehensive, collection of information about municipal services, functions and regulations. The site must be readily expandable to accommodate more information as municipal and client needs evolve. The site must provide for limited two-way communication in a safe and secure environment.

Service providers with great ideas and proposals are requested to contact us for more details via e-mail on or before 10 July 2008 by 14:00 (Pacific Time). Payment terms are negotiable.

Country : Canada

Status : Closed

Are you interested to work on this project? Post your contact details Now! Click Here