Skip to content

Instantly share code, notes, and snippets.

@mantisbayne
Created November 13, 2013 18:31
Show Gist options
  • Save mantisbayne/7453956 to your computer and use it in GitHub Desktop.
Save mantisbayne/7453956 to your computer and use it in GitHub Desktop.
button {
height: 90px;
width: 180px;
border: 2px solid #0000CC;
font-family: Arial;
font-size: 36px;
background-color: #66FFFF;
margin: auto;
}
<html>
<head>
<title>Meredith's Project</title>
</head>
<body>
<link rel="stylesheet" type="text/css" href="meredithsite.css"/>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script type="text/javascript" src="meredithsite.js"></script>
<button type="button">Click Me!</button>
</body>
</html>
function() {
$('button').click(function() {
confirm('Meow! Are you ready to play?');
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment