UGURUs by DigitalOcean logo

UGURUS, powered by DigitalOcean, offers elite training and mentorship for Agency Owners. Join the Agency Accelerator for free to get more leads, land high-value deals, and build recurring revenue!

Reset all Margins & Padding

* {
margin: 0;
padding: 0;
}

This has become a very popular technique lately, and for good reason. It removes all default margin and padding for every object on the page, no holds barred, regardless of browser. This provides …

Avatar of Chris Coyier
Chris Coyier on (Updated on )

3 Styles for BIG Headers

Here are some simple styles you can use when you need a BIG header.

h1.test1 {
  font-family: Georgia, sans-serif;
  font-size: 5em;
  letter-spacing: -2px;
}

h1.test2 {
  font-family: "Trebuchet MS", sans-serif;
  font-size: 5em;
  letter-spacing: -2px;
  border-bottom: 2px solid black;
  text-transform: uppercase;
 
Avatar of Chris Coyier
Chris Coyier on (Updated on )

Header Text Image Replacement

So you know that search engines like Google, Yahoo, and MSN are primarily looking at the text content of your pages to index them and determine their relevancy to searches. You also know that using header tags like <h1> in …

Avatar of Chris Coyier
Chris Coyier on (Updated on )