Botões e Formularios
19/06/2019

ABAIXO SEGUE UM MODELO DE FORMULARIO:

<body>
<form action="contato.php" method="get">
<label for="nome">NOME</label>
<input id="nome" type="text" placeholder="Digite seu nome" name="nome" />
<label for="opcao">gostou</label>
<input type="radio" name="opcao" value="sim"checked="checked" />sim
<input type="radio"name="opcao" value="nao" />nao
<input type="submit" value="Enviar" />
</form>
</body>
segue abaixo modelo de botão:

<style>
.btn{
border: none; cursor: pointer; padding:3px; background-color: #e46;
}
.exe{border: none; cursor: pointer; padding: 3px;
}
.exe:hover{
background-color: #ccc;
}
<body>
<a href="link botão"><button class="btn">titulo1</button></a>
<a href="link botão"><button class="exe"
>titulo2</button></a>
