kneath (owner)

Revisions

  • 037564 Tue Feb 17 16:34:22 -0800 2009
gist: 66104 Download_button fork
public
Public Clone URL: git://gist.github.com/66104.git
Embed All Files: show embed
Text only #
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<!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>