3 WordPress Plugins that Provide AMP Support

Accelerated Mobile Pages are the latest innovation in optimizing sites for mobile use. Accelerated Mobile Pages (AMP) are an open-source framework that was developed to make mobile web browsing quicker and more lightweight. AMP is essentially just a stripped-down, very […]

Read Article

Style Buttons Using CSS3

With CSS3, it’s super easy to take a boring, un-styled link, like this: 

and turn it into a beautiful, customized button, like this:

All it takes is a little bit of styling. To start, you’re going to need some basic <a> tags. […]

Read Article

CSS Border-Radius Property

The CSS border-radius property can be used to give HTML elements rounded corners. Most commonly, the property is seen using only one value, but it actually will take up to four values.

Assigning one value to the border-radius property will apply […]

Read Article

CSS3 Embossed Text Effect

CSS3’s text-shadow property can be used to achieve so many cool text effects, including an embossed effect. This effect is created by giving the text-shadow property  values of -1 for the horizontal and vertical shadow, and leaving the blur-radius at its […]

Read Article

CSS Shorthand Properties

Condense your CSS code by writing in CSS shorthand! A few CSS properties allow for one single property to replace many properties.

For example, if you want to give an element a different amount of padding on each side, it could look […]

Read Article