web guru

Friday, July 30, 2010

How to Create Brilliant Shine Wallpaper

[1] Open a new New Document of 1280 x 1024 pixels.

[2] Now create a new layer Goto Filter>Noise>Add Noise and set these value

[3] Now Duplicate this layer by Pressing Ctrl+J and Change Duplicated layer style to Color Dodge as shown

[4] Now Create a new layer and select a Big Soft Brush Tool as shown

[5] Now Select Black Color of brush and Click on 2 Corners as shown

[6] Now create a new layer and make a rectangular selection on the bottom and fill it with black

[7] Now Goto Blending Options and Set its Gradient

[8] Now Lower its Fill to 0% as shown

[9] Now Add some Text with a Slim Font

[10] Make a copy of this recently made layer and select Free Transform option to turn over the copy, placing it as it is indicated below and select a big eraser tool and erase from the bottom as shown

Now you have something like that

[11] Now Create a new layer and select a soft round brush
and make clicks on some text edges

[12] Now Download Any Star Brushes…search it from google and then open in photoshop

[13] Then Create a new layer and make some brush click on the same place as we did before

[14] Then Create a new layer and select PolyGonal Lasso Tool and make selection as shown and fil it with white.

[15] Make three copies as shown

[16] Now Goto Filter>Blur>Motion Blur and set its value as shown

[17] Apple this Effect on all three layers

[18] Now Open Blending options and set its Outer Glow

Its Done

Posted by babu at 5:31 AM No comments:
Email ThisBlogThis!Share to XShare to FacebookShare to Pinterest

Differences Between XHTML And HTML

The Most Important Differences:
•XHTML elements must be properly nested
•XHTML elements must always be closed
•XHTML elements must be in lowercase
•XHTML documents must have one root element
Posted by babu at 3:34 AM 1 comment:
Email ThisBlogThis!Share to XShare to FacebookShare to Pinterest

The Difference between CSS2 and CSS3

Many exciting new functions and features are being lined up for CSS3. I have showcase some of them on this post.

Here they are:

Borders

* border-color
* border-image
* border-radius
* box-shadow

Backgrounds

* background-origin and background-clip
* background-size
* multiple backgrounds

Color

* HSL colors
* HSLA colors
* opacity
* RGBA colors

Text effects

* text-shadow
* text-overflow
* word-wrap

User-interface

* box-sizing
* resize
* outline
* nav-top, nav-right, nav-bottom, nav-left

Selectors

* attribute selectors

Basic box model

* overflow-x, overflow-y

Generated Content

* content

Other modules

* media queries
* multi-column layout
* Web fonts
* speech
Posted by babu at 3:27 AM No comments:
Email ThisBlogThis!Share to XShare to FacebookShare to Pinterest

About Css

Cascading Style Sheets (CSS) is a style sheet language used to describe the presentation semantics (the look and formatting) of a document written in a markup language. Its most common application is to style web pages written in HTML and XHTML, but the language can also be applied to any kind of XML document, including SVG and XUL.

CSS is designed primarily to enable the separation of document content (written in HTML or a similar markup language) from document presentation, including elements such as the layout, colors, and fonts.[citation needed] This separation can improve content accessibility, provide more flexibility and control in the specification of presentation characteristics, enable multiple pages to share formatting, and reduce complexity and repetition in the structural content (such as by allowing for tableless web design). CSS can also allow the same markup page to be presented in different styles for different rendering methods, such as on-screen, in print, by voice (when read out by a speech-based browser or screen reader) and on Braille-based, tactile devices. While the author of a document typically links that document to a CSS style sheet, readers can use a different style sheet, perhaps one on their own computer, to override the one the author has specified.

CSS specifies a priority scheme to determine which style rules apply if more than one rule matches against a particular element. In this so-called cascade, priorities or weights are calculated and assigned to rules, so that the results are predictable.


Syntax
CSS has a simple syntax and uses a number of English keywords to specify the names of various style properties.

A style sheet consists of a list of rules. Each rule or rule-set consists of one or more selectors and a declaration block. A declaration-block consists of a list of declarations in braces. Each declaration itself consists of a property, a colon (:), a value, then a semi-colon (;).[1]

In CSS, selectors are used to declare which of the markup elements a style applies to, a kind of match expression. Selectors may apply to all elements of a specific type, or only those elements that match a certain attribute; elements may be matched depending on how they are placed relative to each other in the markup code, or on how they are nested within the document object model.

Pseudo-classes are another form of specification used in CSS to identify markup elements, and in some cases, specific user actions to which a particular declaration block applies. An often-used example is the :hover pseudo-class that applies a style only when the user 'points to' the visible element, usually by holding the mouse cursor over it. It is appended to a selector as in a:hover or #elementid:hover. Other pseudo-classes and pseudo-elements are, for example, :first-line, :visited or :before. A special pseudo-class is :lang(c), "c".

A pseudo-class selects entire elements, such as :link or :visited, whereas a pseudo-element makes a selection that may consist of partial elements, such as :first-line or :first-letter.

Selectors may be combined in other ways too, especially in CSS 2.1, to achieve greater specificity and flexibility.[2]

Here is an example summing up the rules above:

selector [, selector2, ...][:pseudo-class] {
property: value;
[property2: value2;
...]
}
/* comment */
[edit] Use
Prior to CSS, nearly all of the presentational attributes of HTML documents were contained within the HTML markup; all font colors, background styles, element alignments, borders and sizes had to be explicitly described, often repeatedly, within the HTML. CSS allows authors to move much of that information to a separate style sheet resulting in considerably simpler HTML markup.

Headings (h1 elements), sub-headings (h2), sub-sub-headings (h3), etc., are defined structurally using HTML. In print and on the screen, choice of font, size, color and emphasis for these elements is presentational.

Prior to CSS, document authors who wanted to assign such typographic characteristics to, say, all h2 headings had to use the HTML font and other presentational elements for each occurrence of that heading type. The additional presentational markup in the HTML made documents more complex, and generally more difficult to maintain. In CSS, presentation is separated from structure. In print, CSS can define color, font, text alignment, size, borders, spacing, layout and many other typographic characteristics. It can do so independently for on-screen and printed views. CSS also defines non-visual styles such as the speed and emphasis with which text is read out by aural text readers. The W3C now considers the advantages of CSS for defining all aspects of the presentation of HTML pages to be superior to other methods. It has therefore deprecated the use of all the original presentational HTML markup.

[edit] Sources
CSS information can be provided by various sources. CSS style information can be either attached as a separate document or embedded in the HTML document. Multiple style sheets can be imported. Different styles can be applied depending on the output device being used; for example, the screen version can be quite different from the printed version, so that authors can tailor the presentation appropriately for each medium.

Priority scheme for CSS sources (from highest to lowest priority):

Author styles (provided by the web page author), in the form of:
Inline styles, inside the HTML document, style information on a single element, specified using the "style" attribute
Embedded style, blocks of CSS information inside the HTML itself
External style sheets, i.e., a separate CSS-file referenced from the document
User style:
A local CSS-file the user specifies with a browser option, which acts as an override applied to all documents
User agent style
Default styles applied by the user agent, i.e., the browser's default settings for element presentation
The style sheet with the highest priority controls the content display. Declarations not set in the highest priority source are passed on by a source of lower priority such as the user agent style. This process is called cascading.

One of the goals of CSS is also to allow users greater control over presentation. Someone who finds red italic headings difficult to read may apply a different style sheet. Depending on their browser and the web site, a user may choose from various style sheets provided by the designers, may remove all added style and view the site using the browser's default styling, or may override just the red italic heading style without altering other attributes.

File highlightheaders.css containing:

h1 { color: white; background-color: orange !important; }
h2 { color: white; background-color: green !important; }
Such a file is stored locally and is applicable if that has been specified in the browser options. "!important" means that it prevails over the author specifications.

[edit] History
Style sheets have existed in one form or another since the beginnings of SGML in the 1970s. Cascading Style Sheets were developed as a means for creating a consistent approach to providing style information for web documents.

As HTML grew, it came to encompass a wider variety of stylistic capabilities to meet the demands of web developers. This evolution gave the designer more control over site appearance but at the cost of HTML becoming more complex to write and maintain. Variations in web browser implementations made consistent site appearance difficult, and users had less control over how web content was displayed.

To improve web presentation capabilities, nine different style sheet languages were proposed to the W3C's www-style mailing list. Of the nine proposals, two were chosen as the foundation for what became CSS: Cascading HTML Style Sheets (CHSS) and Stream-based Style Sheet Proposal (SSP). CHSS, a language that has some resemblance to today's CSS, was proposed by Håkon Wium Lie in October 1994. Bert Bos was working on a browser called Argo, which used its own style sheet language, Stream-based Style Sheet Proposal (SSP).[3] Lie and Yves Lafon joined Dave Raggett to expanded the Arena browser for supporting CSS as a testbed application for the W3C.[4][5][6] Lie and Bos worked together to develop the CSS standard (the 'H' was removed from the name because these style sheets could also be applied to other markup languages besides HTML).[7]

Unlike existing style languages like DSSSL and FOSI, CSS allowed a document's style to be influenced by multiple style sheets. One style sheet could inherit or "cascade" from another, permitting a mixture of stylistic preferences controlled equally by the site designer and user.

Lie's proposal was presented at the "Mosaic and the Web" conference (later called WWW2) in Chicago, Illinois in 1994, and again with Bert Bos in 1995.[7] Around this time the W3C was already being established. and took an interest in the development of CSS. It organized a workshop toward that end chaired by Steven Pemberton. This resulted in W3C adding work on CSS to the deliverables of the HTML editorial review board (ERB). Lie and Bos were the primary technical staff on this aspect of the project, with additional members, including Thomas Reardon of Microsoft, participating as well. In August 1996 Netscape Communication Corporation presented an alternative style sheet language called JavaScript Style Sheets (JSSS).[7] The spec was never finished and is deprecated.[8] By the end of 1996, CSS was ready to become official, and the CSS level 1 Recommendation was published in December.

Development of HTML, CSS, and the DOM had all been taking place in one group, the HTML Editorial Review Board (ERB). Early in 1997, the ERB was split into three working groups: HTML Working group, chaired by Dan Connolly of W3C; DOM Working group, chaired by Lauren Wood of SoftQuad; and CSS Working group, chaired by Chris Lilley of W3C.

The CSS Working Group began tackling issues that had not been addressed with CSS level 1, resulting in the creation of CSS level 2 on November 4, 1997. It was published as a W3C Recommendation on May 12, 1998. CSS level 3, which was started in 1998, is still under development as of 2009.

In 2005 the CSS Working Groups decided to enforce the requirements for standards more strictly. This meant that already published standards like CSS 2.1, CSS 3 Selectors and CSS 3 Text were pulled back from Candidate Recommendation to Working Draft level.

[edit] Difficulty with adoption
Although the CSS1 specification was completed in 1996 and Microsoft's Internet Explorer 3 was released in that year featuring some limited support for CSS, it was more than three years before any web browser achieved near-full implementation of the specification. Internet Explorer 5.0 for the Macintosh, shipped in March 2000, was the first browser to have full (better than 99 percent) CSS1 support[citation needed], surpassing Opera, which had been the leader since its introduction of CSS support 15 months earlier. Other browsers followed soon afterwards, and many of them additionally implemented parts of CSS2. As of July 2008[update], no (finished) browser has fully implemented CSS2, with implementation levels varying (see Comparison of layout engines (CSS)).

Even though early browsers such as Internet Explorer 3 and 4, and Netscape 4.x had support for CSS, it was typically incomplete and afflicted with serious bugs. This was a serious obstacle for the adoption of CSS.

When later 'version 5' browsers began to offer a fairly full implementation of CSS, they were still incorrect in certain areas and were fraught with inconsistencies, bugs and other quirks. The proliferation of such CSS-related inconsistencies and even the variation in feature support has made it difficult for designers to achieve a consistent appearance across platforms. Some authors resort to workarounds such as CSS hacks and CSS filters to obtain consistent results across web browsers and platforms.

Problems with browsers' patchy adoption of CSS along with errata in the original specification led the W3C to revise the CSS2 standard into CSS2.1, which may nearer to a working snapshot of current CSS support in HTML browsers. Some CSS2 properties that no browser successfully implemented were dropped, and in a few cases, defined behaviours were changed to bring the standard into line with the predominant existing implementations. CSS2.1 became a Candidate Recommendation on February 25, 2004, but CSS2.1 was pulled back to Working Draft status on June 13, 2005,[9] and only returned to Candidate Recommendation status on July 19, 2007.[10]

In the past, some web servers were configured to serve all documents with the filename extension .css[11] as mime type application/x-pointplus[12] rather than text/css. At the time, the Net-Scene company was selling PointPlus Maker to convert PowerPoint files into Compact Slide Show files (using a .css extension).[13]

[edit] Variations
CSS has various levels and profiles. Each level of CSS builds upon the last, typically adding new features and typically denoted as CSS1, CSS2, and CSS3. Profiles are typically a subset of one or more levels of CSS built for a particular device or user interface. Currently there are profiles for mobile devices, printers, and television sets. Profiles should not be confused with media types, which were added in CSS2.

[edit] CSS 1
The first CSS specification to become an official W3C Recommendation is CSS level 1, published in December 1996.[14] Among its capabilities are support for:

Font properties such as typeface and emphasis
Color of text, backgrounds, and other elements
Text attributes such as spacing between words, letters, and lines of text
Alignment of text, images, tables and other elements
Margin, border, padding, and positioning for most elements
Unique identification and generic classification of groups of attributes
The W3C no longer maintains the CSS1 Recommendation.[15]

[edit] CSS 2
CSS level 2 was developed by the W3C and published as a Recommendation in May 1998. A superset of CSS1, CSS2 includes a number of new capabilities like absolute, relative, and fixed positioning of elements and z-index, the concept of media types, support for aural style sheets and bidirectional text, and new font properties such as shadows. The W3C maintains the CSS2 Recommendation.[16]

CSS level 2 revision 1 or CSS 2.1 fixes errors in CSS2, removes poorly-supported features and adds already-implemented browser extensions to the specification. While it was a Candidate Recommendation for several months, on June 15, 2005 it was reverted to a working draft for further review.[17] It was returned to Candidate Recommendation status on 19 July 2007.

[edit] CSS 3
CSS level 3 is currently under development,[18] since December 15, 2005.[19] The W3C maintains a CSS3 progress report. CSS3 is modularized and consists of several separate recommendations. The W3C CSS3 Roadmap provides a summary and introduction.[20]
Posted by babu at 3:23 AM No comments:
Email ThisBlogThis!Share to XShare to FacebookShare to Pinterest

ఆర్ట్ డిజైన్ లేటెస్ట్


Posted by babu at 3:07 AM No comments:
Email ThisBlogThis!Share to XShare to FacebookShare to Pinterest

Wednesday, July 28, 2010

Template Design (PSD)

Posted by babu at 1:06 AM No comments:
Email ThisBlogThis!Share to XShare to FacebookShare to Pinterest

Tuesday, July 27, 2010

5 Reasons Why Landing Pages & Forms are More Valuable than Homepages

A recent post over at Google made an interesting claim: The ROI for improvement is much better for landing pages and forms than it is for homepages. At first this sounds controversial, but it makes sense for many reasons. While the article talks about how to improve forms and landing pages, it doesn’t really explain why they are more valuable than home pages.

Here are five reasons landing pages are more valuable than home pages:

  1. Landing pages & forms are real interaction points.They are the primary way that visitors enter information or communicate back to you, the web site owner. Most pages are simply one-way communication, but forms and landing pages with forms are two-way…they are the conversation. By “listening” to the conversation on these types of pages, you’ll learn a lot more than you will by trying to figure out what home page traffic is telling you.
  2. Landing pages are transactional, and the transactions they enable are the ones crucial to your business. This means they are the most important point in the usage lifecycle of your customers…it’s when visitors are deciding to do business with you or start the process of doing business with you. They contain the most important decision points for your customers.
  3. Landing pages are contextual. When designed well, landing pages address a very specific need of a very specific audience. This makes them high value…they are like the sales closer. They come in after someone has shown interest and are the most powerful way you can close the deal. They might have a lot less traffic than the homepage, but that traffic is much more important.
  4. Home pages are a catch-all. They act to triage all incoming traffic. They have to handle first-time visitors, returning visitors, the press, friends and family, investors, people who want to sign into your web app, everyone who has any reason at all to visit. Therefore, the messages on homepages are necessarily weakened and can’t speak as strongly to any specific user group…they have to handle everything. They serve a completely different purpose than more focused pages like landing pages or forms.
  5. Homepages are notoriously political. Everyone wants a piece of the homepage. The thinking is that because the homepage is the single page with the most traffic, it must be the most important page on the site. But that’s simply not true…the mere fact that it’s the root URL on your domain means that it will inevitably get more traffic. In the end the politics almost always serve to distract…by spending so much time on the homepage design teams often overlook the value of their other, more important pages.

As site visitors we don’t often see landing pages unless we come via a specific pathway, such as clicking on an ad on Google Search or Facebook or some other ad provider. This serves to diminish landing pages in our mind…because we don’t see them as often as the venerable homepage. But there are real reasons why it makes sense to focus much of our design efforts on landing pages and forms…while leaving the homepage for the birds.

Posted by babu at 11:12 PM No comments:
Email ThisBlogThis!Share to XShare to FacebookShare to Pinterest

5 Principles for Effective Web Design

Every website needs to capture attention of the users and make them perform an action on the page. Here we come to the question that occupies the mind of many creative web designers, “How does one ensure user attention for a website?” To make things a little easier for talented web designers, here are 5 basic principles for effective web design. These might even be known but forgotten somewhere down the line!A website forms the face of a company, product or service. Therefore, it is of great importance to make the website communicate clearly with its users. Web designers always need to keep in mind about the needs of the users. This leads one to the kind of web design required for the subject.

1. Well-Placed Elements!

washington
We all love to explore our creative side. However, it may not always be a good idea to do so if your user is visiting your website purely for information. The presentation is of utmost importance. This travel website gives information in a creative manner without making a user feel exasperated whilst referring to the various sections. The use of photographs, color schemes, the placement of the tabs and the ‘Things to Do’ and ‘What’s New’ section below offer users adequate information about deals and the destination. This is when placing the elements in terms of the user requirement turns out to be useful for the website owner as well.

2. Great Ideas For Great Designs!

timshed
Web designers particularly in love with Flash do come up with some amazing stuff! Yet, not many really do work. Every web designer needs a fantastic idea to translate the material into a creatively designed website. This approach works particularly for topics that allow the scope for creatively. In this example, the website has only a little bit of content with a tin shed next to it. However, as you click on the door, you are taken into the complete interiors of the tin shed. The photographs used are excellent and the elements are placed very cleverly into sections of the interiors. A great idea backed with good copy and display of information!

3. When Less Is More!

sofa
A web designer can create amazing designs through a simplistic approach! Well, truth is that simple designs are quite often the toughest ones to create. When we say simplistic, it means using the elements in the right proportion to highlight important areas of the website. A web designer should avoid cluttering the page with too much information. The design should speak more with fewer elements! In this example, we have a software company that has made a creative use of space, photography and content. It captures the attention through its simplistic approach.

4. User Engagement

agencynet
Apart from an attractive layout, sometimes, one needs an extra punch in the design. There are many cases wherein a designer actually receives the freedom to use the website as a creative canvas. This is when website interactivity plays an important role. The clever use of website interactivity makes websites visually-appealing wherein users can perform an action on the page. Website interactivity should engage the users whilst they explore the website. This in turn motivates them to explore further. In this example, the digital agency has used a creative way to display many things about the company. The home page appears as seen in the image. There are various little elements a user needs to click on to know more.

The ‘Culture’ section of the website is displayed in an interesting way as shown in the image. To view the details, a user needs to either draw horizontal or vertical lines to zoom in or out or draw a semicircle to rotate the page. It makes the whole viewing very interesting. This kind of interactivity makes a user perform an action on the page.

5. Content Is King, But In Limit

GB Studio
A website is the creative combination of words with visuals. There is a need to select the right words and headings to attract users. It should always be written with the user in mind. This will help in keeping the web design neat, clean and to the point. Remember, users browsing the website will always be in a rush. It is important to catch their attention very soon! In this image, the website uses minimum headings and copy matter. The heading is placed in an attractive manner that conveys a lot about the website.

This list should help you to get started with your web design. As you begin, you will learn more with the number of assignments you handle. I would surely like to know more ideas from you to help our readers. Looking forward to your replies

Posted by babu at 11:03 PM No comments:
Email ThisBlogThis!Share to XShare to FacebookShare to Pinterest
Newer Posts Older Posts Home
Subscribe to: Posts (Atom)

Blog Archive

  • ▼  2010 (74)
    • ►  11/28 - 12/05 (2)
    • ►  11/14 - 11/21 (23)
    • ►  08/22 - 08/29 (5)
    • ►  08/08 - 08/15 (11)
    • ►  08/01 - 08/08 (10)
    • ▼  07/25 - 08/01 (14)
      • How to Create Brilliant Shine Wallpaper
      • Differences Between XHTML And HTML
      • The Difference between CSS2 and CSS3
      • About Css
      • ఆర్ట్ డిజైన్ లేటెస్ట్
      • Template Design (PSD)
      • 5 Reasons Why Landing Pages & Forms are More Valua...
      • 5 Principles for Effective Web Design
      • A Web Designers Guide to Information Architecture
      • 130+ FREE SEO WEB TOOLS AND SEARCH ENGINE OPTIMIZA...
      • 35 Beautiful High Resolution WallPaper Collection
      • 22 Amazing Animal Photographs for Your Desktop
      • Create a Layered Glowing Text Effect
      • Top 20 Logos with Hidden Meanings
    • ►  07/18 - 07/25 (9)

About Me

My photo
babu
i have 7+ years exp. on web designing & 4+ years exp. on as a corporate faculty. my portfolio • http://99designs.com/users/384367/folio • http://99designs.com/users/415534/folio • http://99designs.com/users/363228/folio
View my complete profile

Flickr

webguru-babu. Powered by Blogger.