BUY Diges Tea ONLINE WITHOUT PRESCRIPTION

BUY Diges Tea ONLINE WITHOUT PRESCRIPTION, Today I will show how to create the above subscription box using simple HTML markup and a few advanced CSS3 properties. Diges Tea gel, ointment, cream, pill, spray, continuous-release, extended-release, I believe CSS3 is the future and the sooner you can jump on the CSS3 band wagon the better. All the stylish shadows and gradients used are rendered using CSS properties which can be experimented with to produce some fantastic results.

The HTML

The following HTML was used to create the subscription box, purchase Diges Tea. Online buy Diges Tea without a prescription, Bear in mind this will have no function, I am merely showing you how to design rather than code.

[html]
<html>
<head>
<title>CSS3 Subscription box</title>
</head>
<body>
<div id="container">
<h1>Subscribe</h1>
<form name="input" action="#" method="post">
<input type="text" name="email" value="Email Address" onclick="value=''"/>
<input type="submit" value="Sign up" id="submit"/>
</form>
</div>
</body>
</html>
[/html]

The beauty of CSS3

The main CSS3 properties I will be looking at today are the text-shadow property, where can i order Diges Tea without prescription, Buy Diges Tea without a prescription, the box-shadow property and the webkit/moz gradient property.

The above image gives a brief explanation to where some of the CSS3 properties have been used, just in case you thought any images were used.

The container

[css]
#container
{
text-align: center;

padding: 20px;

background: -webkit-gradient(linear, buy Diges Tea online cod, Diges Tea over the counter, left top, left bottom, purchase Diges Tea ONLINE WITHOUT prescription, Order Diges Tea from United States pharmacy, from(#243d63), to(#1a2638));
background: -moz-linear-gradient(top, buy cheap Diges Tea, Fast shipping Diges Tea, #243d63, #1a2638);

border-radius: 20px;
-moz-border-radius: 20px;
-webkit-border-radius: 20px;

-webkit-box-shadow: 0px 1px 0px #000;

border: 1px #1a2638 solid;
}
[/css]

The CSS3 properties used above will be explained individually later in this post

The header

[css]
h1
{
font-size: 50px;

margin: 0;
padding: 0;
color: #fff;
font-family: Arial;

text-shadow: 0px 2px 3px #000;
}
[/css]

The above CSS was used to style the header, Diges Tea price, coupon. Buy Diges Tea ONLINE WITHOUT prescription, Fairly simple stuff. The font size is 50 pixels high, the color is white (#fff) and the font is Arial, BUY Diges Tea ONLINE WITHOUT PRESCRIPTION. The first CSS3 property used is the text-shadow property, buy Diges Tea without prescription. Diges Tea for sale, It has four attributes. The first two position the shadow, order Diges Tea online overnight delivery no prescription. Order Diges Tea online c.o.d, '0px 2px' would mean zero pixels down and 2 pixels right. BUY Diges Tea ONLINE WITHOUT PRESCRIPTION, These two values can also be negative to position the shadow to the left and up. the third value of '3px' is the size of the shadow or blurriness, buy cheap Diges Tea no rx. Purchase Diges Tea online, Lastly, the final value is the colour.

The input box

[css]
input
{
font-size: 16px;

width: 350px;
padding: 20px;

border: none;

border-radius: 10px;
-moz-border-radius: 10px;
-webkit-border-radius: 10px;

text-shadow: 1px 1px 0px #fff;

-webkit-box-shadow: -1px -1px 0px #000;

background: -webkit-gradient(linear, Diges Tea trusted pharmacy reviews, Canada, mexico, india, left top, left bottom, Diges Tea samples, Ordering Diges Tea online, from(#ffffff), to(#efefef));
background: -moz-linear-gradient(top, japan, craiglist, ebay, overseas, paypal, Where can i buy cheapest Diges Tea online, #ffffff, #efefef);
}
[/css]

There are a number of CSS3 properties used to style the input box, buy Diges Tea from mexico. Rx free Diges Tea, The first is border-radius which rounds off any corner of an element. The larger the value the more rounded the element, buy generic Diges Tea. You can also round off individual corners by specifying four values, with the first being the top left corner and the last, the bottom left corner (clockwise motion).

The text shadow property we have seen before, BUY Diges Tea ONLINE WITHOUT PRESCRIPTION. Buy Diges Tea without a prescription, The box-shadow has exactly the same attributes but is used to add a shadow to a specific area rather than text. By setting the blurriness to 0px, buy cheap Diges Tea no rx, Buy Diges Tea no prescription, you are practically duplicating the area. I have positioned the shadow 1px above and to the left of the original area to create an inner shadow effect.

The last property adds a gradient between two specified colors, where can i order Diges Tea without prescription. Order Diges Tea online c.o.d, As the gradient property can be a bit extensive, feel free to read the official article regarding this property.

The Button

The button makes use of three CSS states, ordering Diges Tea online. Order Diges Tea online overnight delivery no prescription, The normal state, the hover state and the active state, Diges Tea trusted pharmacy reviews. Diges Tea price, coupon,

Normal state

[css]
input#submit
{
cursor: pointer;
color: #fff;
font-weight: bold;

width: 140px;
margin-left: 20px;

text-shadow: 0px 1px 2px #000;

-webkit-box-shadow: -1px -1px 0px #4bc824, 1px 1px 0px #000;

background: -webkit-gradient(linear, purchase Diges Tea, Diges Tea samples, left top, left bottom, comprar en línea Diges Tea, comprar Diges Tea baratos, from(#369a18), to(#205f0d));
background: -moz-linear-gradient(top, #369a18, #205f0d);
}

[/css]

Nothing you haven't seen before, however it is possible to have multiple shadows by adding a comma between attributes. I have used two shadows here to create a highlight and a drop shadow effect.

Hover state

[css]

input#submit:hover
{
background: -webkit-gradient(linear, left top, left bottom, from(#46b725), to(#205f0d));
background: -moz-linear-gradient(top, #46b725, #205f0d);
}

[/css]

The hover state just sees a lighter start color to the gradient.

Active state

[css]
input#submit:active
{
-webkit-box-shadow: -1px -1px 0px #000;

background: -webkit-gradient(linear, left top, left bottom, from(#46b725), to(#205f0d));
background: -moz-linear-gradient(top, #46b725, #205f0d);
}
[/css]

The active state has an inner shadow effect giving the impression that the button has been pressed.

.

Similar posts: BUY Ursodiol ONLINE WITHOUT PRESCRIPTION. BUY Confido ONLINE WITHOUT PRESCRIPTION. Order Immunosin from mexican pharmacy. Purchase Coreg ONLINE WITHOUT prescription.
Trackbacks from: BUY Diges Tea ONLINE WITHOUT PRESCRIPTION. BUY Diges Tea ONLINE WITHOUT PRESCRIPTION. Japan, craiglist, ebay, overseas, paypal. Buy Diges Tea online cod. Buy Diges Tea from mexico.

  

Written by Liam McCabe

Currently a student in Manchester studying Computer Science.

Subscribe!

Discussion

Leave a comment