Skip to content

Instantly share code, notes, and snippets.

@kshoufer
Created December 22, 2012 20:03
Show Gist options
  • Save kshoufer/4360763 to your computer and use it in GitHub Desktop.
Save kshoufer/4360763 to your computer and use it in GitHub Desktop.
HTML code to display the sliding-doors buttons.
<!DOCTYPE html>
<html>
<head runat="server">
<title>Demo Push Buttons</title>
<link href="style.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div>
<div><h2>Demonstration Push Buttons</h2></div>
<div class="clear">
<a class="button" href="#" onclick="this.blur(); return false;"><span>Save</span></a>
<a class="button" href="#" onclick="this.blur(); return false;"><span>Canceling the Command</span></a>
</div>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment