Want to make money online? Google and you’ll get millions of search results telling you thousands of ways to make money on the Internet. Some methods are real and legitimate ways for making money online while others are plain scams to make you pay money. How do you know which methods are legitimate and really work?
User Interface Designs, Add Colours, User Experience Design (UX Design), Website Usability, Website Accessibility, Mobile Apps Design, Custom Website Design & Development, UI patterns, CSS Forms,Responsive Website Design, css, jQuery designs, Html5, CSS3,PHP, Google Angular JS Framework, Backjbone JS, MVC
Thursday, May 19, 2011
Download Free iPad Icons, PSDs with iPad Tutorial
To download the files, please click on the preview image to go to the source site and remember to check the terms of use before using them in your projects. If you know of any other great iPad freebies, please add them in the comments section below and we’ll include them in this post when appropriate.
Enjoy… Download the iPad templates and icons now!!!
Enjoy… Download the iPad templates and icons now!!!
Six Steps to make your client Happy
Monday, May 2, 2011
Apple Launches iPad2 in India
Evey one surprise Today Apple has launched iPad 2 in India, the next generation of its magical device for browsing the web, reading and sending email, enjoying photos, watching videos, listening to music, playing games, reading ebooks and much more. Compared to the first generation iPad, which was launched nine months after its US launch, the iPad 2 lands in India just over a month after the US launch.
Labels:
Apple Launches iPad2 in India,
Apple products,
India,
iPad,
iPad2,
iPad2 India,
Technology
Horizontally And Vertically Centering Div with CSS
While building web page layouts, you’ve probably been faced with a situation where you need to center a div both horizontally and vertically with pure CSS. There are more than a few ways to achieve this, and in this article we are going to show you our favorite involving CSS and jQuery.
But first, the basics:
Horizontal centering with CSS
Continue this article
But first, the basics:
Horizontal centering with CSS
.className{
margin:0 auto;
width:200px;
height:200px;
}
Continue this article
Labels:
css,
For Beginners,
jQuery,
Tutorials,
User Interface Design
Basics information of Informatica
Data Integration. It’s what we do. Informatica enables organizations to gain a competitive advantage in today’s global information economy by empowering companies with timely, relevant and trustworthy data for their top business imperatives.
What is dimension modeling?
Unlike ER model the dimensional model is very asymmetric with one large central table called as fact table connected to multiple dimension tables .It is also called star schema.
Sunday, April 24, 2011
50 (Single Page)One Page Website Designs For Design Inspiration
Single Page Website Design (Onepage Page Website Design) is a hot trend now days. Throughout history, great artists always found new ways to show their creativity to express themselves and create new trends and techniques to remark their work apart from the rest of the crowd. The Definition of design is more critical in modern terms as now design is a way of communication; and, more specifically, Web design is a well define platform for content. There is no “Good” and “Bad” in design. It always define as a “Different”.
Free jQuery scroll effect for One-Page Template, supported to HTML5 & CSS3
In this tutorial,where we are creating a HTML5 & CSS3 template, here is the pure XHTML version. It is compatible with all browser versions, SEO friendly, and features a sleek jQuery scroll effect. Perfect for those cases when you need something up fast.
It is easily modifiable and the code is properly commented. Download the source file
It is easily modifiable and the code is properly commented. Download the source file
Adobe Dreamweaver CS5 Designer and Developer Friendly
With the new release of Adobe Creative Suite CS5 we expected more than a few changes in the Adobe Products. We all had our share of good and bad things when using the CS4 products. Adobe® Dreamweaver® CS5 software empowers designers and developers to build standards-based websites with confidence.
Design. Develop. Test and publish. Faster
Design visually or directly in code, develop pages with content management systems, and accurately test browser compatibility thanks to integration with Adobe BrowserLab, a new Adobe CS Live online service.* CS Live services are complimentary for a limited time. See what’s new
Dreamweaver CS5 streamlines both front-end and back-end development tasks with ease. With a set of integrated tools available directly in the authoring environment, Dreamweaver CS5 increases your productivity and virtually eliminates the need for external third-party browser-based tools.
About for more information
Design. Develop. Test and publish. Faster
Design visually or directly in code, develop pages with content management systems, and accurately test browser compatibility thanks to integration with Adobe BrowserLab, a new Adobe CS Live online service.* CS Live services are complimentary for a limited time. See what’s new
Dreamweaver CS5 streamlines both front-end and back-end development tasks with ease. With a set of integrated tools available directly in the authoring environment, Dreamweaver CS5 increases your productivity and virtually eliminates the need for external third-party browser-based tools.
About for more information
Thursday, February 17, 2011
Make the Footer Stick to the Bottom of a Page
There are several ways to make a footer stick to the bottom of a page using CSS. But until now, they've used long and messy hacks or a lot of extra HTML markup; this method uses only 15 lines of CSS and hardly any HTML markup. Even better, it's completely valid CSS, and it works in all major browsers. Internet Explorer 5 and up, Firefox, Safari, Opera and more.
Add the following lines of CSS to your stylesheet. The negative value for the margin in .wrapper is the same number as the height of .footer and .push. The negative margin should always equal to the full height of the footer (including any padding or borders you may add).
* {
margin: 0;
}
html, body {
height: 100%;
}
.wrapper {
min-height: 100%;
height: auto !important;
height: 100%;
margin: 0 auto -4em;
}
.footer, .push {
height: 4em;
}
Follow this HTML structure. No content can be outside of the .wrapper and .footer div tags unless it is absolutely positioned with CSS.
<html>
<head>
<link rel="stylesheet" href="layout.css" ... />
</head>
<body>
<div class="wrapper">
<p>Your website content here.</p>
<div class="push"></div>
</div>
<div class="footer">
<p>Copyright (c) 2008</p>
</div>
</body>
</html>
Add the following lines of CSS to your stylesheet. The negative value for the margin in .wrapper is the same number as the height of .footer and .push. The negative margin should always equal to the full height of the footer (including any padding or borders you may add).
* {
margin: 0;
}
html, body {
height: 100%;
}
.wrapper {
min-height: 100%;
height: auto !important;
height: 100%;
margin: 0 auto -4em;
}
.footer, .push {
height: 4em;
}
Follow this HTML structure. No content can be outside of the .wrapper and .footer div tags unless it is absolutely positioned with CSS.
<html>
<head>
<link rel="stylesheet" href="layout.css" ... />
</head>
<body>
<div class="wrapper">
<p>Your website content here.</p>
<div class="push"></div>
</div>
<div class="footer">
<p>Copyright (c) 2008</p>
</div>
</body>
</html>
Subscribe to:
Posts (Atom)