Contact Form Markup

In this lesson, we will create a contact form using Flexbox.

We'll cover the following...

Creating a form

Replace the contents of the form area with an HTML form. We will not make use of the action attribute of the form for now. If you would like to make the form work by collecting data, you can use a free service on formspree.io.

<form 
   action="#" 
   method="POST" 
   class="contact-form">
</form>

Inside the form, create four containers for the form flex-items:

<form 
   action="#" 
   method="POST" 
  
...