Untitled
5 months ago in CSS
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Botão Chamativo</title>
<style>
/* Estilo do botão */
.chamativo-button {
background-color: #4CAF50; /* Cor de fundo */
color: white; /* Cor do texto */
padding: 15px 25px; /* Espaçamento interno */
font-size: 16px; /* Tamanho da fonte */
border: none; /* Sem borda */
cursor: pointer; /* Cursor ao passar por cima */
border-radius: 8px; /* Borda arredondada */
transition-duration: 0.4s; /* Duração da transição */
text-decoration: none; /* Sem sublinhado */
display: inline-block; /* Elemento de bloco em linha */
}
/* Estilo ao passar o mouse */
.chamativo-button:hover {
background-color: #45a049; /* Cor de fundo alterada */
}
</style>
</head>
<body>
<!-- Botão -->
<a href="#" class="chamativo-button">Clique Aqui!</a>
</body>
</html>