Photoshop is a complete application for image editing. Here you can get resources E-books (in PDF format), and video tutorials for web designers and image /photo editors that want to use Photoshop.
Adobe Photoshop E-books
- Adobe Photoshop CS6 Reference - Tutorials (2013 - PDF - 9.5 MB)
- - This book contains the basic tutorials to learn Photoshop, from image and color basics, layers, drawing and painting, filters and effects, till animation and 3D images.
- Photoshop CS6 Unlocked, 2nd Edition (2013 - PDF - 71 MB)
- - Photoshop CS6 Unlocked (101 tips, tricks and techniques) is a question-and-answer book for web designers who want to use Photoshop for websites design.
Creating text effects, wrapping text around a curve, texturing and shadowing text, adjusting Images: Removing blue tints, darkening and lightening images, fixing red-eye, removing dark shadows, sharpening images, and.
Manipulating Images: Creating fish-eye effects, removing imperfections, making product shots for ecommerce, ..
Creating Web Interfaces: Best practice and time saving ideas, how-tos on slicing images, creating rollovers, and more.
Advanced techniques: Generating thumbnails, animated GIFs, bulk watermarking, sharing Photoshop Actions, and more.
Video courses and tutorials
- Vector Web Graphics in Photoshop (VGP 1 - VGP 2 - VGP 3 - VGP 4)
- - In this course you'll learn about how vectors are used within Photoshop.
- Photoshop for Web Design (PWG 1 - PWG 2)
- - This video course shows how designers can create vibrant web graphics, wireframes, and complete web site mockups in Adobe Photoshop. The course covers creating a custom web workspace; drawing, coloring, and optimizing web graphics; creating vector shapes and text that scale seamlessly; mastering transparency; building navigation bars and buttons; and speeding up these tasks with the Photoshop automation tools.
Other free Photoshop video courses and tutorials:
•
Learn Photoshop CS6
Daily Test with Code Example
HTML
CSS
JavaScript
PHP-MySQL
Which HTML5 tag is indicated to be used as container for menu with navigation links in Web site?
<section> <nav> <article><nav><ul>
<li><a href="http://coursesweb.net/css/" title="CSS Course">CSS Course</a></li>
<li><a href="http://www.marplo.net/jocuri/" title="Flash Games">Flash Games</a></li>
</ul></nav>
Which CSS property shifts an item horizontally to the left or right of where it was?
text-align clear float.some_class {
width: 30%;
float: left;
}
Click on the Math object method which returns x, rounded downwards to the nearest integer.
Math.ceil(x) Math.abs(x) Math.floor(x)var num = 12.34567;
num = Math.floor(num);
alert(num); // 12
Indicate the PHP function which returns the number of characters in string.
mb_strlen() count() stristr()$str = "string with utf-8 chars åèö";
$nrchr = mb_strlen($str);
echo $nrchr; // 30