Skip to content

Instantly share code, notes, and snippets.

@gmmedia
Last active December 31, 2016 11:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gmmedia/182c8c550891f829c3a2660af197a9a8 to your computer and use it in GitHub Desktop.
Save gmmedia/182c8c550891f829c3a2660af197a9a8 to your computer and use it in GitHub Desktop.
Simple CSS Button
<!-- CSS stylings -->
<style>
a.button {
color: #990000;
background-color: #fff;
line-height: 85px;
font-size: 25px;
padding: 15px 35px;
border: 2px solid #990000;
border-radius: 5px;
}
a.button:hover {
background-color: #ccc;
color: #009999;
}
</style>
<!-- HTML anchor with button class -->
<p style="text-align:center"><a class="button" href="https://j0e.org/">My Button</a></p>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment