Skip to content

Instantly share code, notes, and snippets.

@kneath
Created February 18, 2009 00:34
Show Gist options
  • Save kneath/66104 to your computer and use it in GitHub Desktop.
Save kneath/66104 to your computer and use it in GitHub Desktop.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<title>untitled</title>
<style type="text/css" media="screen">
button, a.button{
display:inline-block;
padding:6px 10px;
font-family: Helvetica, Arial, sans-sierf;
text-transform:uppercase;
font-size:10px;
font-weight:bold;
background:#333;
color:#fff;
border:none;
-moz-border-radius:3px;
-webkit-border-radius:3px;
cursor:pointer;
text-decoration:none;
}
</style>
</head>
<body>
<button>Look, I'm a button</button>
<a href="#" class="button">Hey, I look different!</a>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment