Answers for "buttons html code"

5

html button

<form action="https://google.com">
    <input type="submit" value="Go to Google" />
</form>
Posted by: Guest on April-02-2021
0

html button

<!DOCTYPE html>
<html>
<head>
  <button class="Button">YOUR TEXT HERE</button>
  	<style>
      .Button {
        background-color: black;
        border: none;
        color: white;
        padding: 10px 25px;
        text-align: center;
        text-decoration: none;
        display: inline-block;
        font-size: 16px;
        margin: 4px 4px;
        cursor: pointer;
        border: 8px;
      }
     </style>
  </head>
</html>
Posted by: Guest on January-09-2022
0

button

<div data-aos="fade-up"><button class="buton">Prendre rendez-vous</button>
</div>
Posted by: Guest on August-29-2021

Browse Popular Code Answers by Language