HTML Basic Form With Button Design

  • Post category:CSS

Get the code of HTML Basic Form and watch video tutorials. You can practice using our code editor. Our practical guide will make your learning journey much easier. You can explore the tutorial and learn.

<form>
  First Name:
  <input type="text"><br><br>
  Last Name:
  <input type="text"><br><br>
  <input type="submit"><br><br>
</form>
input[type="submit"] {
  background: orange;
  border: none;
  padding: 5px 20px;
  border-radius: 5px;
  color: white;
  text-transform: uppercase;
}