Thursday, April 4, 2019

Best part time job for students 2019

Best part time job for students


1  vivatic.com



Vivatic offers everyone the opportunity to work from home or anywhere. Sit on the beach with your laptop or work from your bed. You can work from anywhere. We also offer you the freedom to do the type of jobs you enjoy: writing articles, doing paid surveys and other jobs whenever you want.

The benefit of this site

Freedom
Vivatic's work from home jobs gives you freedom. Choose where you want to work, when you want to work and what you want to work on.

Earn Money

Vivatic's community members can make great money. To earn enough to live off you will need to do both writing and surveys. For a nice bonus on top of the money you already make, you can do any of the jobs as and when you want.
See Your Family
Vivatic allows you to work from home, which will give you more time to see your family.

More Time

Working at home allows you to spend less time traveling, therefore you can spend more time earning or doing the things you love to do.

Variety

Vivatic provides a variety of different writing jobs, as well as a wide variety of types of online jobs. Therefore you can choose the types of writing you're interested in doing as well as the types of jobs you're interested in.

How much you earn?
How much you earn will depend on how much time you want to spend writing articles, answering questions, taking surveys and completing micro jobs. The reward for completing each of these vary from between £15/$15 to a few pence and vary in time from a few seconds to a few hours. Completing surveys also entitles you to receive Free samples, Gift vouchers and entry into competitions. Surveys generally last between 5 mins and 30 mins.

2 prizerebel.com



How Do I Get Started?
Get started in 3 easy steps and it's FREE! 

1. Just click on the Signup button below and fill out the form with your name, email and chosen password. 

2. Check your email, click the validation link and you are ready to make money online! 

3. Answer surveys, signup for offers or watch a few videos to earn points. Redeem points for a reward that you want!
Sign up in 10 seconds and start your earning as a student, housewife


3 paidviewpoint.com



This is the best website to earn in $ as a student very easy to use The reward for completing each of these vary from between 15$ to30$ a few pence and vary in time from a few seconds to a few hours. Completing surveys also entitles you to receive Free samples, Gift vouchers and entry into competitions. Surveys generally last between 5 mins and 30 mins.
They also provide a demo video to learn how to start earning.

4 swagbucks.com



This is another web site to earn money gift card etc by paid surveys watching videos. You also search for something on it and earn. You can also earn by playing games and on shopping for big cashback.


When you've sufficiently gathered Swagbucks focuses, you can reclaim them for prizes or gift vouchers. There are a lot of prizes and gift vouchers to browse (click "Recover SB" at the highest point of your screen under your profile), yet I generally go for the $5 Amazon gift voucher for 500 SB or the $3 Amazon gift voucher for 300 SB.

Chapter 10: CSS Font Properties

Chapter 10: CSS Font Properties



Inherited: Yes

 Font

The font property can set the style, weight, variant, size, line height and

font:

font: italic bold normal small/1.4em Verdana, sans-serif;

The above would set the text of an element to an italic style a bold weight a normal variant a relative size a line-height of 1.4em and the font to Verdana or another sans-serif typeface.



Font-Family

You can set what font will be displayed in an element with the font-family property.

There are 2 choices for values:

 family name
generic family

If you set a family name it is best to also add the generic family at the end. As this is a prioritized list. So if the user does not have the specified font name it will use the same generic family. (see below)

font-family: Verdana, sans-serif;

Font Size

You can set the size of the text used in an element by using the font-size property.

font-size: value;

There are a lot of choices for values:

  xx-large

  x-large

  larger

  large

  medium

  small

  smaller

  x-small

  xx-small

  length

  % (percent)

There is quite a bit to learn about font sizes with CSS so, I am not even
going to try to explain it. Actually, there are already some great resources on how to size your text. (see below)


What size text should I use in my css by Paul O'B   Dive into accessibility - Font Sizes


Font Style

You can set the style of text in an element with the font-style property

font-style: value;

Possible values are

 normal
 italic
 oblique



Font Variant

You can set the variant of text within an element with the font-variant property

font-variant: value;

Possible values are

 normal
 small-caps


Font Weight

You can control the weight of text in an element with the font-weight property:

font-weight: value;

Possible values are

 lighter
 normal

  100

  200

  300

  400

  500

  600

  700

  800

  900

  bold


  bolder

Chapter 9: CSS Text Properties

Chapter 9: CSS Text Properties



Inherited: Yes

Color

You can set the color of text with the following:

color: value;                 
Possible values are

  color name - example:(red, black...)

  hexadecimal number - example:(#ff0000, #000000)

  RGB color code - example:(rgb(255, 0, 0), rgb(0, 0, 0))


Letter Spacing

You can adjust the space between letters in the following manner. Setting the value to 0 prevents the text from justifying. You can use negative values.

letter-spacing: value;

Possible values are

 normal

 length


Example:

T h e s e  l e t t e r s  a r e  s p a c e d  a t  5 p x .

Text Align

You can align text with the following:

text-align: value;

Possible values are

 left

 right

 center

 justify

Examples:

This text is aligned left.

This text is aligned in the center.

This text is aligned right.

This text is justified.


Text Decoration
You can decorate text with the following:

text-decoration: value;

Possible values are

 none

 underline

 overline

 line through

 blink

 Examples:

This text is underlined.
  
This text is overlined.

This text has a line through it.

This text is blinking (not in internet explorer).

Text Indent

You can indent the first line of text in an (X)HTML element with the following:

text-indent: value;

Possible values are

 length

 percentage


Examples:

This text is indented 10px pixels.

Text Transform

You can control the size of letters in an (X)HTML element with the following:

text-transform: value;

Possible values are

 none

 capitalize

 lowercase

Examples:

This First Letter In Each Word Is Capitalized, Though It Is Not In My File.

THIS TEXT IS ALL UPPERCASE, THOUGH IT IS ALL LOWERCASE IN MY FILE.

this text is all lowercase. though it is all uppercase in my file.


White Space

You can control the whitespace in an (X)HTML element with the following:

white-space: value;

Possible values are

 normal

 pre

 nowrap


Word Spacing

You can adjust the space between words in the following manner. You can use negative values.

word-spacing: value;

Possible values are

 normal

 length


Example:


These words are spaced at 5px.

Thursday, March 28, 2019

Chapter 6: CSS Spans

Chapter 6: CSS Spans


Spans are very similar to divisions except they are an inline element versus a block level element. No linebreak is created when a span is declared.

You can use the span tag to style certain areas of text, as shown in the following:

<span class="italic">This text is italic</span>

Then in my CSS file:

.italic{

font-style: italic;

}

The final result is: This text is italic.

The purpose of the last 2 chapters was to provide you with a basis for using CSS in an (X)HTML file. For a more detailed explanation of XHTML please visit SUBLEARNING

Chapter 8: CSS Padding


Chapter 8: CSS Padding



Inherited: No
Padding is the distance between the border of an (X)HTML element and the content within it.

Most of the rules for margins also apply to pad, except there is no "auto" value, and negative values cannot be declared for padding.

padding-top: length percentage;
padding-left: length percentage;
padding-right: length percentage;
padding-bottom: length percentage;

As you can also see in the above example you have 2 choices of values for the padding property
length
percentage

You can also declare all the padding of an element in a single property as follows:

padding: 10px 10px 10px 10px;

If you declare all 4 values as I have above, the order is as follows:

1.        top
2.        right
3.        bottom
4.        left

If only one value is declared, it sets the padding on all sides. (see below)

padding: 10px;

If you only declare two or three values, the undeclared values are taken from the opposing side. (see below)

padding: 10px 10px; /* 2 values */

padding: 10px 10px 10px; /* 3 values */

If you do not declare the padding value of an element, the padding is 0 (zero).

Note: You do not have to add px (pixels) or whatever units you use if the value is 0 (zero).
You can see in the example below, the main container for this site has 30px (pixels) of padding between the border and the text.

#container{
width: 70%;
margin: auto;
padding: 30px;
border: 1px solid #666;
background: #ffffff;
}


Chapter 7: CSS Margins

Chapter 7: CSS Margins



Inherited: No
As you may have guessed, the margin property declares the margin between an (X)HTML element and the elements around it. The margin property can be set for the top, left, right and bottom of an element. (see example below)

margin-top: length percentage or auto;
margin-left: length percentage or auto;
margin-right: length percentage or auto;
margin-bottom: length percentage or auto;

As you can also see in the above example you have 3 choices of values for the margin property

  length
  percentage
  auto

You can also declare all the margins of an element in a single property as follows:

margin: 10px 10px 10px 10px;
If you declare all 4 values as I have above, the order is as follows:

1.        Top  
2.        Right           
3.        Bottom     
4.        Left  

 If only one value is declared, it sets the margin on all sides. (see below)
margin: 10px;

If you only declare two or three values, the undeclared values are taken from the opposing side. (see below)

margin: 10px 10px; /* 2 values */
margin: 10px 10px 10px; /* 3 values */

You can set the margin property to negative values. If you do not declare the margin value of an element, the margin is 0 (zero).

margin: -10px;

Elements like paragraphs have default margins in some browsers, to combat this set the margin to 0 (zero).

p {margin: 0;}

Note: You do not have to add px (pixels) or whatever units you use, if the value is 0 (zero). You can see in the example below, the elements for this site are set to be 20px (pixels) from the body

body{
margin: 20px;
background: #eeeeee;
font-size: small;
font-family: Tahoma, Arial, "Trebuchet MS", Helvetica, sans-serif;
text-align: left;

}

Study Abroad for Science Students after 12th

Study Abroad Options for Science Students after 12th Class




Different Types of Tests

After you have effectively cleared higher optional Science, you may show up for Scholastic Aptitude Test, The scores acquired from this test stay legitimate for a long time. You may effectively join IVY League schools in the US based on the center, reviews in Indian school alongside curricular exercises.

While you are doing your Bachelor's in any subject, it is especially vital to get a decent evaluation so as to support your odds of examining abroad. You may show up for GRE, i.e., Graduate Record Examination for getting admitted to US-based and other English talking nations graduate schools. You may likewise take your GAT for admission to the board programs. Understudies who have not examined English as their first language need to take TOEFL.

Application Requirements

The primary prerequisites while applying for a college class after twelfth science in India are as per the following.

Scholastic records-you need a decent scholarly record all through your school to get admission to a decent college class in any outside University, ideally the USA and UK.

State-sanctioned test– tests like GRE, TOEFL, and IELTS, and so forth are a portion of the tests where you have to perform well so as to get confirmation in any organization of high notoriety.

Letters of Recommendation– any instructor of your secondary school need to prescribe you for seeking after your higher investigations abroad.

Mission statement (SOP)- a solid mission statement is required to have a higher shot of getting confirmation in any remote college

Money related support– you need solid budgetary help to continue your advanced education abroad. Be that as it may, don't stress on the off chance that you don't have a decent money related foundation. As there are various grants that will assist you with sustaining your higher examinations.


Meetings (If material) – a few universities and colleges pursue the procedure of a meeting for conceding understudies in their undergrad school. Obviously, you have to perform well in it to get an opportunity in any foundation of your decision.