CSS Button Generator
Button Preview:
Generated Code:
<style>
.generated-button {
background-color: #007bff;
color: #ffffff;
padding: 10px 20px;
border-radius: 5px;
font-size: 16px;
font-weight: bold;
text-decoration: none;
display: inline-block;
transition: all 0.3s ease;
}
.generated-button:hover {
background-color: #0056b3;
color: #ffffff;
}
</style>
<a class="generated-button" href="https://sketchproinc.blogspot.com">Click Me</a>