worry solve adsen

Friday 31 October 2014

Working with the Mesh Fill tool

The Mesh Fill tool is one of the most powerful features in CorelDRAW®. It lets you design multi-colored filled objects with fluid transitions and unique effects. You can adjust single node transparency to create smooth, rich color transitions for any mesh filled object.
Unlike traditional fills, mesh fills can be molded, like clay. This allows you to create objects with a special form, similar to how a sculptor gives shape to his work. You can adapt and shape the fill to suit the object you're creating, and to achieve a realistic colored appearance. And best of all, mesh fills are vector objects which means that you can enlarge or reduce at any time without substantially increasing file size.
Let's start by creating a simple rectangle and then clicking the Mesh Fill tool. You can also press M on your keyboard to access the tool quickly. With CorelDRAW X5, your rectangle will have one central point, which creates a grid with 2 rows and 2 columns. You can add additional, eq

Test your tattoo with CorelDRAW® before making it real on your body by Silvio Gomes

This tutorial shows how you can have a (simulated) preview of your tattoo and make corrections or changes before making it real.

Important: Take a high resolution picture of the part of your body where you want to apply the tattoo.
In this example only two vector images (a butterfly and floral design), and text were used.

Step 01

Import your own photo and the vector images to a new Document (File > Import).

Step 02

Rotate the floral design 90º (Window > Dockers >Transformations > Rotate) – or use the shortcut (Alt+F8).

Step 03

Move the floral design to its final position and resize it (click and drag the object handles to resize).

Step 04

Select the floral design and choose the Envelope tool in order to shape it to fit the contours of the body in the photo (Toolbox > Envelope tool).

Step 05

Using the handles of the Envelope tool, distort the image, following the curves of the body.

Step 06

Select the Text tool (Toolbox > Text), choose a font from the drop-down Font List on the Property bar and enter your text. Increase or decrease font size using the Font Size drop-down list on the Property bar and place your text in its final location.
Use same procedure as 'Step 05' to distort the text (Toolbox > Envelope tool).

Step 07

Click and drag the butterfly to its final position. Resize and/or rotate it (Alt+F8) if you wish.
Option: To apply a different color to the object, select it and click on a different color in the Color Palette.

Step 08

Select all the objects (Floral design + Text + Butterfly) and group them (Ctrl+G).

Click on the Transparency tool (Toolbox > Transparency tool), and choosing a Uniform transparency from the drop-down list in the Property bar, adjust the settings

Andy Rubin, former head of Android, is leaving Google

Andy Rubin, a co-founder of Android and long time employee of Google, is leaving the company. In Android circles Rubin is best known for his time leading move after many years to head up robotics efforts at the company instead. Sundar Pichai has ledGoogle's Android efforts since Rubin made the move in 2013.

Saving Web Pages

To save your code as a web page, click the File
menu at the top of Notepad (or whatever Text
Editor you are using.) From the File menu, select

HTML Tags

HTML is written in something called tags. Tags
come in pairs, an opening one and a closing one.
The first pair of tags we'll write are the HTML
tags themselves. You put one HTML tag at the
top, and one at the bottom:
<HTML>
</HTML>
This tells a browser like Internet Explorer or

Automatically Publish Blogger Posts To Facebook,Twitter And Other Social Sites

Social media plays an important role in improving any blog's SEO.That's why you may watch social media gadgets almost on every blog/website.If you have enough number of subscribers on social sites then just automatically publish your posts on social sites and get the traffic.Today I am giving a tutorial about automatically posting on facebook,twitter and some other social sites with usingdlvr.it service which is free of cost.I am also using this service to publish my

Thursday 30 October 2014

CSS Classes


The class selector allows you to style items
within the same (X)HTML element differently.
Similiar to what I mentioned in the
introduction about inline styles. Except with
classes the style can be overwritten by
changing out stylesheets. You can use the
same class selector again and again within
an (X)HTML file.
To put it more simply, this sentence you are
reading is defined in my CSS file with the
following.
p {
font-size: small;
color: #333333
}
Pretty simple, but lets say that I wanted to
change the word “sentence” to green bold
text, while leaving the rest of the sentence
untouched. I would do the following to my
(X)HTML file.
<p>
To put it more simply, this <span
class=”greenboldtext”>sentence</span> you
are reading is styled in my CSS file by the
following.
</p>
Then in my CSS file I would add this style
selector:
.greenboldtext{
  font-size: small;
color: #008080;
font-weight: bold;
}
The final result would look like the following:
To put it more simply, this sentence you are
reading is styled in my CSS file by the
following.
Please note that a class selector begins with
a (.) period. The reason I named it
“greenboldtext” is for example purposes, you
can name it whatever you want. Though I do
encourage you to use selector names that are
descriptive. You can reuse the “greenboldtext”
class as many times as you want.

What is a web page?

In this section, you're going to learn just what a
web page is and how it can be read by a browser
like Internet Explorer or Firefox. You'll also
construct your very first web page. Let's make a

Software for Writing Web Pages

To start writing web pages, we'll use a simple
text editor. That way, you'll be able to focus on
the code, without getting distracted by the menus
and buttons of a complex piece of Web Design

Cascading Style Sheet Rules

We've produced a video to go with this lesson.
It's recommended that you read the text below
as well, though. The video is here:
Cascading Stylesheet Rules
A Cascading Stylesheet rule tells the browser
what the HTML looks like, and what it should do.
A rule can dictate what just one HTML tag should
look like, or you can construct your own rule to
be applied as and where you want it.
For example, a rule can be set up that tells the
browser to format every <P> tag so that its first
line is indented. Or you could construct your own
paragraph rule, and just apply the style to certain
paragraphs, not all paragraphs.
There are three parts to a Rule: The Selector, the
Property, and the Value.
The Selector
There are three different kinds of CSS Selector:
An HTML selector, a Class selector, and an ID
selector.
An HTML Selector is the text part of an HTML
tag. The complete paragraph tag is <P>. So its
Selector is just P ' in other words, strip the angle
brackets off and you get the HTML Selector.
A Class Selector is one you set up yourself, to be
used anywhere on your page. The Font1 from our
STYLE example above was a Class Selector. We
picked the name ourselves and then applied the
style to some text on the page.
An ID Selector is similar to a Class selector, but
you use them to identify a particular element, a
text box element on a form, for example.
Here's an example of what all three selectors
look in a STYLE tag.
The first one, H1 , is the HTML Selector. Notice
that it has had its angle brackets removed. With
an HTML selector, all the HTML tags on the page
will be formatted in the style you have set. So for
H1 above, all the text between the <H1></H1>
tags on the page will now be in Red.
The second one, .NewFont , is the Class selector.
Note that a class selector must start with a full
stop (period). Then you type the name for your
selector (anything you want). No space is added
between the full stop and the name of your
selector.
The third one, #NewTextboxColour , is the ID
selector. An ID selector starts with the hash/
pound (#) symbol. You then type the name you
want to use for your ID selector. Again, no space
is added between the symbol and the name of
your selector.
Property and Value
Once you have set up your Selector, you then
define the Properties and Values for that selector.
The Property for the selector is the thing you're
trying to change. Examples are: Font, Color,
Background, Margin, Text.
The Value for the selector is the new setting for
the property. For example, for our COLOR
property, we can set it to a value of an actual
colour (red, blue, yellow), or a colour code
(#FFFF00, #000000).
The property and the value are enclosed in curly
brackets { }. The syntax for the whole thing would
then be:
Selector {Property: Value}
An example is:
H1 {Color: Red}
H1 is the selector, Color is the property, and Red
is the value of the property. Note the colon ( : )
after the Property. This is used to separate a
Property from a Value, so that the browser knows
which one is which.
If you want to add more than one property and
value, there are two way to do it: all on one line,
with each pair of properties and values separated
by a semi-colon ( ; ). Or you can put each pair of
properties and values on multiple lines separated
by a semi-colon ( ; ). Like this:
H1 {Color: Red; Font-weight: Bold; Font-Size:
16pt;}
The multiple lines version is this:
The multiple lines version is easier to read.
So, to sum up:
A CSS rule has three parts, a Selector, a Property,
and a Value
The Selector can be a HTML selector, a Class
selector, or an ID selector
You separate the Property and Value from the
Selector by enclosing them in curly brackets, a
left curly bracket first { and a right curly bracket
to close the rule }
A Property is separated from a Value by a colon
( : )
If you're using more than one pair of properties
and values for the same selector, separate them
with semi-colons ( ; )

Introduction to the Web Design Course

What you will learn
The aim of this course is to get you started
designing web pages. It is assumed that you
have little or no experience of the subject. During
our time together, you'll learn some new concepts

Microsoft Band is a Windows Phone fitness tracker that works with Android and iPhone too

Microsoft's Windows Phone operating system has so far missed out on the smartwatch and fitness tracker fun, but with the new Microsoft Band it's finally in the game. And what's more, the Band actually works with more than just Windows-based mobiles: it syncs with your iPhone or Android phone too.
In terms of features, the Microsoft Band covers the field. It has common fitness tracker features like step tracking and more premium features such as GPS and a heart rate monitor. And it also offers features more typically found in smartwatches such as a colour touchscreen, notifications and payments when you're in Starbucks.

Wednesday 29 October 2014

Hello Dear visited

Do you like this website ? Do you gave me any suggation about this site . Leave your comments. Rahat shah

Masking Hair technique in Corel® PHOTO

-
PAINT™ X6/X7
by Stefan Lindblad
One of the most important things many users
wish to learn and master when photo editing is
probably how to mask hair. If you can master
masking hair, then you'll able to master most

Design your desk

by Joseph Diaz
Like clockwork, after the holiday season but
before spring, we typically get a little break from
the hectic workflow that we normally experience
here at our sign shop. We take that opportunity