HTML Form Border

  • Post category:CSS

Get the code of HTML Form Border 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>
form {
  background: #f2f2f2;
  padding: 10px;
  border: 1px solid green;
  border-radius: 5px;
}