<!Doctype html>
            <html>
            <head>
            <title>CSS3 Hover Effect</title>
            
           </head>
           <body>
           <h1>CSS3 Button Hover Color Change</h1>
           <input type="button" id="go" value="New On This Site ?" />
           </body>
           </html>
body {
    padding-left: 100px;
}
input#go {
    background-color: #4c9ed9;
    color: #ffffff;
    padding: 20px 40px;
  border:1px solid #111;
}
input#go:hover {
    background-color: #ffffff;
    color: #4c9ed9;
    border:1px solid #111;
}

External CSS

This Pen doesn't use any external CSS resources.

External JavaScript

This Pen doesn't use any external JavaScript resources.