I am currently designing a website with a prominently placed "Hire me" button in the center of the page. The button was implemented using the following code:
<div id="hire_me_button">
<a href="contact.html"><h4 id="hire_me" class="button">Hire Me</h4></a>
</div>
#hire_me_button {
text-align: center;
width: 73.3%;
}
.button {
text-align: center;
display: inline-block;
width: 8em;
height: 3em;
background: rgba(0, 0, 0, 0.6);
border: 1px solid black;
padding: .75rem .625rem;
border-radius: 8px;
color: white;
font-size: .875rem;
font-family: Helvetica, Arial, Sans-Serif;
text-align: center;
}
My idea is to add an element of fun by changing the text on the button when hovered over or clicked. I want it to switch from "Hire me" to either "Wise choice" or "Wise Decision" depending on which phrase would be more suitable.