Web Design Trends in 2011

Tuesday 13 December 2011

HTML5 Essentials and Good Practices

Powerful Web Forms. Zero Coding. Adobe Business Catalyst.


HTML5, together with CSS3 and responsive design are the new buzz around web technologies these days. This article will help you get started using HTML5 on your projects today and show you some good practices to put what you learned to good use.

HTML5 Logo
Lets see a typical HTML5 page markup:
<!doctype html>
<html>
<head>
   <title></title>
</head>
<body>
   <header>
       <h1></h1>
       <nav>
           <ul>
               <li><a href="#">link 1</a></li>
               <li><a href="#">link 2</a></li>
               <li><a href="#">link 3</a></li>
           </ul>
       </nav>
   </header>

   <section>
       <article>
           <hgroup>
               <h1>Post title</h1>
               <h2>Subtitle and info</h2>
           </hgroup>
           <p>Content goes here.</p>
       </article>
       <article>
           <!-- Another article here -->
       </article>
   </section>
   <aside>
       <!-- Sidebar here -->
   </aside>
   <footer></footer>
</body>
</html>
With some styling the structure of our page will be like the image below
HTML5 Logo

Doctype

If you come from an HTML 4 or XHTML background, the first thing you might have noticed on the sample markup above, is the new doctype declaration. Really simple, just type it as you see it. And no reasons to worry, it is backwards compatible with all browsers. You can actually change it right now on all your html pages.
Apart from the new simple doctype declaration, you will see many new tags. Most of them are pretty much self explanatory but lets see them in detail.

Block level Elements

In HTML5 we no longer have to resort to “div-itis” to give structure to our page. We have a great selection of new block level elements that help us to create a semantic structure quickly and of course our code becomes more readable and maintainable.
With the new structural elements we can begin to forget about <div id=”header”> and <div id=”footer”> and start using the new <header> and <footer> tags. They work the same as a div but hey, less writing, more semantic code. We are also introduced to other new elements such as <section> <article> <nav> <aside> <hgroup> <figure> and <figcaption>.
The use of <header> and <footer> is obvious. The <nav> tag specifies the navigation links of our page instead of having <div id=”navigation”>. <aside> refers to a section of the page that is separated from the main content. It is mostly used for sidebars today, though some developers suggest it could be used to contain some secondary information for example, for articles.
<section> is used to give structure to our page and contain parts related to a certain theme while <article> can contain a blog post, news post, comment etc. A <section> can contain many <article> elements and an <article> element can contain many <section> elements.
We also have a new container for our headings <h1> to <h6> which is the <hgroup>. Finally we have a <figure> element which is container for a representational image, related to the content but its presence is not mandatory. The <figure> element can also contain a caption using the <figcaption> element.

Inline Elements

HTML5 introduces some new inline elements too. <time> and <mark> are a couple of these new ones that help to make our markup even more semantic.
<time> is used to display time semantically. You can choose to display time, date and both. Example below
<time datetime=”20:00”>8pm</time>
<mark> is used to highlight parts of content for example when a user searches for a specific term. Its difference from <strong> or <em> is that it gives no special meaning or importance to the content it highlights.

Media Elements

HTML5 also brings us some new media elements. We have <audio>, <video> and <embed> tags together with the <source> tag to specify media sources. The simplest way to use them is below
<!-- simple audio use -->
<audio src="audio-file.ogg" controls>
</audio>

<!-- simple video use with multiple sources-->
<video controls>
   <source src="video-file.mp4" type="video/mp4"/>
   <source src="video-file.ogv" type="video/ogg"/>
</video>
Unfortunately, support is not so great yet. Browser makers chose different filetypes and encoding for the sources they support so you have to use multiple versions of the same media with different encoding and you need a flash fallback to support even older browsers.

Canvas Element

One of the other great new features HTML5 has to offer, is the <canvas> element. It gives you the ability to draw shapes dynamically or even manipulate images. <canvas> by itself provides vast possibilities in modern web design and development but it is not a matter to discuss in this article.

Good Practices

With all those new elements some people are bound to get confused. Should we use a header inside an article to contain all the title info? Should we wrap every heading with an <hgroup>? To help you out, here are some good practices about these new elements.
The less is more motto stands in HTML5 markup too. For example when you have a single <h1> heading in your <article>, there is no need to wrap it with an <hgroup> tag. If you have two or more headings, then wrapping both of them with an <hgroup> would be a good use of the <hgroup> element.
<!-- incorrect use of hgroup -->
<article>
    <hgroup>
        <h1>Heading</h1>
    </hgroup>
    <!-- rest of content here -->
</article>

<!-- correct use of hgroup -->
<article>
    <hgroup>
        <h1>Heading 1</h1>
        <h2>Heading 2</h2>
        <h3>Heading 3</h3>
    </hgroup>
    <!-- rest of content here -->
</article>
Do you really need to have a <header> and a <footer> element on your <article>? Depends. Do you have many info regarding the article like multiple headings, date information, comment information etc? Then the <header> would have semantic meaning and would be used correctly. Again refrain in using too many elements when they are really not needed. No need to nest a single <h1> in a <header>. Same goes for the <footer> element. Do you have post information, author information etc? Then a <footer> would be appropriate.
<!-- incorrect use of header -->
<article>
    <header>
        <h1>Heading</h1>
    </header>
    <!-- rest of content here -->
</article>

<!-- correct use of header -->
<article>
    <header>
        <hgroup>
            <h1>Heading 1</h1>
            <h2>Heading 2</h2>
        </hgroup>
        <p>Date and Author information</p>
    </header>
    <!-- rest of content here -->
</article>
Should you use <section> or <article>? There really is only one way to tell whether you should use one of these elements. <section> refers to a structure that contains related content. <article> on the other side, contains independent content. So a <section> can have many <article>s and an <article> can have many <section>s. It all gets down to what the content is.
Do you use <aside> only for a sidebar structure? <aside> started out that way, but the specs have changed since then. Nowadays <aside> gets another semantic meaning when used inside an <article>. It denotes secondary content related of course to the main content inside the <article>. When used outside of an <article> it is still considered secondary content but for the page as a whole, sidebars being a perfect example.
<!-- aside outside of article -->
<div>
    <aside>
        <!-- use as sidebar for example -->
    </aside>
</div>

<!-- aside inside of article -->
<article>
    <!-- main article content here -->
    <aside>
        <!-- secondary related content -->
    </aside>
</article>

Browser support

Support is great for most of the new HTML5 tags, especially the block level ones. All you have to do to enable all the modern browsers to understand them, is to include the code below in you css file.
article, aside, figcaption, figure, footer, header, hgroup, nav, section
{
    display: block;
}
For IE, this is, of course, not enough. Still all you need to do, is include the html5shiv script when the page load in IE. Use the code below
<!--[if lt IE 9]>
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
And that’s pretty much it. You can start using these new HTML5 elements today and make your markup much more semantic, readable and maintainable.

About the Author


Ilias Iovis is a web and graphics designer & web developer from Thessaloniki, Greece. He is mostly interested in front-end and is constantly learning about HTML5, CSS3 and jQuery. You can find him at iliasiovis.comand follow him on @iliasiovis.

Web Design Trends in 2011

Monday 12 December 2011

Web Design Trends in 2011
Create a Portfolio for your Pocket with Business Cards from moo.com
How will you stay relevant as a designer in 2011? The ultimate goal of a designer is not to dazzle but to entangle. Any designer can get ‘oohs’ and ‘ahhs’ that are easily forgotten. The supreme designer is able to create an environment which charms and captivates the user to the point where he does not want to find the ‘Back’ button. Several elements come together to forge such a wonderland: harmonious color scheme, intuitive design, easily accessible information and fast response. Additionally, one can never under-estimate the power of simplicity. Of course, this has always been the case, but in 2011, you are no longer at the forgiving discretion of the desktop, or even laptop, computer. Now, your design must contend with smart phones, netbooks, tablets and the like. Are you ready?
Take a gander at the top 11 trends for 2011.

1. More CSS3 + HTML5

What a gratifying sigh of relief! CSS3 and HTML5 have been on the distant horizon of web design for the past couple of years, but now, in 2011, we see an explosion of it. Designers are finally starting to let go of Flash. However you may feel about Flash, you do know that it does not play well with some of the hot, new technology available to your current and potential visitors. In 2011, you will slowly step away from Flash and embrace the magic known as HTML5. Look at the amazingly similar comparison:
Now that’s shown, please understand that Flash and HTML5 are not equal opponents. There is plenty of room for both in 2011. The problem is that designers in 2010 (and before) misused Flash. Case in point, very rarely should your entire site be made of Flash, especially these days. HTML5 alleviates some of the burden we have placed on Flash. However, HTML5 cannot (yet) replace the extraordinary design elements we can achieve through Flash.
Perhaps even more exciting is the fact that CSS3 is available to us in a real way this year. Move over Photoshop (wow, Adobe just cannot rest), because CSS3 is making short work of text shadow, border radius and image transparency. If you have not already begun, now is the time to really delve into understanding CSS3 and HTML5.

2. Simple Color Schemes

Simplicity. There’s nothing quite as impacting as an honest message on a quiet backdrop. Quiet can be interpreted several different ways. Forget black and white or shades of gray. Think of green, yellow or even red as your primary color. However, limit your palette to two or three colors. Work within the shades of each color for variety. It can be truly remarkable what a few colors can do for your message. Observe:
Shades of green create this Twitter visualization tool. Side note: this site was created with XHTML/CSS and Javascript.
Red can be jarring if done incorrectly. This site gets it right by subduing the color’s overwhelming personality with easy-to-read high contrast text.
Jacqueline is an artist and a writer who spends an inordinate amount of time playing Super Nintendo and watching Star Trek. 


Google’s "Panda" SEO Effects - DotTechnologies

Thursday 8 December 2011

The Google Panda Update will affect your Google Search Results Page Ranking.
As many of you have heard by now Google has dramatically changed how it ranks pages in its search results in an update they have dubbed Panda. The primary goal of the Panda update was to give user the best, most relevant possible results. The side effect is that many sites that were in a coveted top position for their keywords, are now finding themselves scrambling to reclaim their place at the top of the mountain.

The Panda update places an emphasis on "quality content". Google takes into account factors such as the amount of time people spend on the site and how many pages within the website they visit. It also favors sites that have a presence in social media and maintain frequently updated content (such as blog). While it’s arguable that this is all for the best, as it will "undoubtedly" mean better more relevant results, its overlooking some very basic facts:

* Small Business owners don't have the time to constantly update their content.

* Some websites are designed specifically so that people don't have to spend a lot of time on them to find   what they need and have that need serviced.

* Businesses that developed a large website before content management systems became the norm and that contain a lot of static content do not have the time or money to invest in adjusting or redeveloping their design or content. Yet these sites are still relevant to the audience they address.

 * Small businesses with a 5 page site that is optimized for SEO and relevant will not be able to compete with a less relevant competitor that has a blog and may not have the time or money to invest in blogging but instead invest in quality products and services.

It is difficult for the small business owner to adapt to these changes, since some of them represent a financial barrier or require them to rethink the entire design and development behind a site that has been working well for them up to this point.

The following are a few ways that small business owners can try to overcome the difficulties presented by the Panda Update based on their situation:

 * Prioritize your most important 5 pages and redevelop the content of those pages first. QWebDesign.com can offer assistance with this task.

  * Start PPC Advertising in Google. If you've lost ground organically you can try to make up for it in paid search. Also this may increase your traffic which will also help you organically. Use the Site links Extension in Ad words to get more out of your budget and direct people to other relevant pages of your site.

QWEBDESIGN.COM has a team of experts that can advise you on how to setup a PPC campaign or modify an existing one.

    * Eliminate duplicate content and/or "boilerplate" content from your web pages

    * Redirect your weakest pages to stronger more relevant pages.

    * Redevelop your entire website design based on a comprehensive Inbound Marketing
Strategy and once its complete redirect all of your old pages to the new site and content. Use content management systems such as Joomla and Wordpress to make it easier to manage, edit, update, and market. QWEBDESIGN.COM's staff can help you not only setup these content management systems but we can also give you tips on how to best use them.

For some businesses, implementing a blog or social media presences will require time and effort in terms of developing an appropriate strategy (assuming their policy or stance allows for it at all). However taking the leap and starting a Social Media Strategy will help improve your overall SEO efforts since Social Media will aid the following components of a good SEO strategy:

    * External Link Building

    * Increased Traffic

    * Relevant Anchor Text on External Links

    * Real-time Content

    * Frequency of Updated Content

Using the methods mentioned above are sure to help you reclaim some of your lost search engine ranking and in time likely return you to your previous position or better. For new sites, focusing on these criteria will help ensure your success. Again, if you're uncomfortable implementing these kinds of changes on your own, or this type of web design overhaul is simply a time consuming of a task, feel free to contact QWebDesign.com and ask for our web design team to help tackle it for you.

How Magento modules can improve your ecommerce website - DotTechnologies

Wednesday 7 December 2011

Magento is described by many web design experts as the best piece of ecommerce software available to shops and stores looking to take their business online. It allows you to build an SEO friendly ecommerce website that is compatible with tools like Google Analytics and Google Adwords. As well as having functionalities that allow customers to filter their products and see your best selling products first, Magento also provides sales data, and other customer and product based reports, allowing you to evaluate your businesses performance, and have full control over your website. Like WordPress, which is known for having thousands of add-ons and plugins, there are a variety of different plugins, known as ‘modules’ available to integrate with your Magento website. These modules are designed to enhance your website, adapting it so it looks or functions in a different way.

These modules will make your ecommerce website run more smoothly, providing a better shopping experience for your customers. Whether you’re in the retail, manufacturing, or hospitality industry, there will be many suitable add-ons available for you to use to improve your websites functionality.

Some Magento modules are free and can be downloaded online, whereas others you have to pay for. Each has its own specific purpose and you will find some more useful than others, depending on what you are looking to do with your ecommerce site. Two popular free add-ons are the Enterprise Suit ERP and Sweet Tooth Rewards. The Enterprise Suite module provides businesses with information such as incoming orders and stock quantity. It also enables website owners to update prices and other product details more efficiently. Sweet Tooth Rewards is another fantastic free extension which creates a loyalty point system for a Magento website. Customers earn points by buying products regularly and can then use these points to purchase more products as they gain more and more. This is a great tool as it attracts new customers and keeps existing customers happy!

Although there are a number of free add-ons available, if you’re looking for something a little more advanced, or that does something specific for your website, you will have to purchase them. Prices vary depending on the type of module that you’re looking to buy. Magento Cybertill integration is a module that automatically fetches your stock levels and updates your website with the correct information, ensuring that your customers can’t purchase something that is out of stock. This is a useful tool as it allows you to see when you are getting low on particular items, and need to re-order them. With Cybertill there are a three ways in which you can integrate it with your Magento site, basic, advanced or completely, with the two latter options you will gain more benefits such as customers and sales integration and other simple object access protocol services.

There are also add-ons which ensure your ecommerce site produces suitable XML product feeds for Google Base, as well as tools that make updating information on your website much easier, such as the Magento Press Release module that allows you to create, control and publish press releases is a simple and efficient manner.

Magento Modules help to create a better shopping experience for customers, as they enhance your website and make it more user-friendly. As well as improving your website for customers, these add-ons help to provide you with knowledge and important information that could help you improve your business in the long run. Although there are a large number of modules on the market, all of which have different purposes, if you can’t quite find the right one for your site, web developing experts are able to make tailor-made ones, ensuring that you enhance your website to its full potential.

Pimp Your Photo – Over 20 Awesome and Free Photoshop Actions - DotTechnologies

Tuesday 6 December 2011

Today I want to share with you some of my favorite Photoshop actions. First of all, let me tell you a little about it: an action is a set of recorded commands which you can use on several photos to obtain a certain effect. These actions will help you add more light, sharpen or add some extra effects to your image, they’re absolutely great and they help you save a lot of time!

So if you have a series of dark photos and you want to make them brighter, or you have really dull colors on your photos and you really want to bring some life to those photos or other great effects that will make your photos stand out, check out the collection of Photoshop actions below, you will certainly find something you like:






  Photoshop Action 21 by ~miss-etikate

 


My first homemade action! Made from a tutorial I found online. Hope you guys like it.

Please favorite if you use it and I'd LOVE to see the results from this action!




Sample photo by me (Giżycko)

Rules
1. Fave me if you are going to download this Photoshop Action.
2. Don't copy as your own!
3. You can also inform me in the comments if you are going to download.
4. Give me link back if used.
5. Keep the rules.

Remeber, that actions look differently on each picture (;
Hope you like it






This action seems very nice, especially single, I fit all kinds of pictures .. I hope you like 



 Color Action by ~Amr-Mohseni hope you like it , image from stock images i have
please do not redistribute it , and favorite if you gone use it



Breaking SEO News – Google, Bing ‘N’ Yahoo Creates Joint Alliance to Make Search Richer - DotTechnologies

Friday 2 December 2011

SEO News AllianceI recently got shocked by this release that worlds biggest competitors Google, Bing and Yahoo have come together to build a joint alliance with each other to make the search results more rich for the online users. This news made my mind blow up with excitement and astonishment that the biggest rivals come together was like impossible but they have proved to be real professionals.  The alliance is launched via domain name “schema.org” which is aimed at to provide a common platform from where a set of micro-data, from each of the search engine will be used to support the search results. The micro-data will consist of existing data and the fresh data created to take this scheme. This breaking news will definitely bring a new change in SEO tips and SEO guidelines.

Understanding micro-data will help us in understanding more easily, what these giants are up to. Well, micro-data is asset of structured mark up which is used to give a valuable meaning to the published content online on blogs, articles sites or websites. All the types of micro-data provided by Google, Bing and Yahoo are recorded in schema.org to make them in use collectively for search refining and maintaining quality content.

SEO News SchemaThis alliance will help Yahoo a lot and open ways to enhance their search results as well and improve user experience. It was said that Yahoo uses the same formula for indexing and rankings as Bing does but now they may have wide options to control their algorithm according to themselves from a common platform. However, where Yahoo gets a benefit from this alliance, Google and Big also gets an open facility in using the micro-data in many ways which can improve their search relevancy, versatility, credibility and finding the most accurate listing with the help of Google places. Google as a monster leader in the web market, will use the micro-data for its search refining related to finding recipes to give users with the exact recipe that they might be looking for including even the minute details regarding time consumed in making a recipe, ingredients involved, exact cooking time on every step etc. isn’t it awesome?

Alliance Allows Micro-formats and RDFa Support

The big question mark arises when for the users already using the Google, Bing and Yahoo snippets that whether the schema.org will support micro-formats and RDFa? The answer to this puzzle is provided by professionals that the schema.org provides a standard format for micro-data to be used and will not support the previous micro-formats and RDFas. But to give a freehand to users which are already using the snippets, search engines have announced that those users will be facilitated on the same micro-format that they are using. The option preferred by the search monsters still recommends switching to the standard format offered in schema.org.

Winding up SEO News

SEO NewsWith the discovery of this news of joint alliance of Google, Bing and Yahoo, I expect to see much better and accurate search results within these search monsters and hope from SEO professionals, to re-focus on ranking their websites in top results within these 3 big search monsters by applying new SEO strategies and smart planning.
Faisal Qureshi is a golden member of SEO Tips providing latest and top SEO Tips, SEO Guides and SEO News from past 5 years. He is working with SEO Tipss as a professional SEO, SEM and SMO editor. Apart from SEO Tipss he is a SEO Expert Writer for various articles, reviews and magazine posts. Contact Faisal on Gtalk at fasalqureshi [at] gmail.com or catch him on facebook.

Dot Technologies USA Web Hosting - Making Your Hosting Choice Easy

Thursday 1 December 2011

What is web hosting? Every time you visit a website, what you see on your web browser is basically just a web page that is downloaded from the web server onto your web browser. Usually, a web site is made up of numerous web pages; along with a web page is in effect made of texts & images. All these web pages need to be stored on the web servers as a result online users can visit & see your website.


So, if you plan to own a new website, you will have to host your website on a web server. Once your website goes live on the World Wide Web, online users can then browse your website on the Internet and see your content from all over the world. Company that provides the web servers to host your website is called web hosting providers.

What is Domain Name
The unique name that identifies an Internet site, simply stated domain names allow people to find your web site by business name.
Often a hosting company will offer a free domain name registration at the time you sign up for a hosting plan. We recommend that you go ahead and register your domain name as soon as possible; especially if you think it will take some time to develop the site itself.

"Operating system" Should I choose shared hosting or dedicated?

Shared Hosting
With shared hosting, numerous Web sites are shared on one serve Shared hosting is much cheaper than dedicated hosting because the cost of operating the server is split between many different customers.

Dedicated Hosting
In contrast to shared hosting, dedicated hosting assigned a specific web server to be used only by one customer. With a dedicated server all the resources are yours to use as you please. Therefore, dedicated hosting commands a higher premium and typically starts at $50 per month and can range up to $200 - $500 per month.

"To Summarize"
Ok. Now I identify the requirements of my Web Site and how do I identify which Web Hosting provider is better?

There are two things that you should focus on. First, compare web hosting providers; make sure if the web host offers all the things your Web Site needs. Second sign up for the plans all our top web hosts offering Money-back guarantees. This way you can always cancel the account if you do not feel comfortable with the hosting service.
Its very well said that make sure that your website should reflect the theme and products or services you offer to the customers.Because many companies promised to give you best and best quality but in actual they only make only for customer. So always choose best web design services by USA.
Top