How to structure a web form - Learn web development | MDN (2024)

  • Previous
  • Overview: Web form building blocks
  • Next

With the basics out of the way, we'll now look in more detail at the elements used to provide structure and meaning to the different parts of a form.

Prerequisites: A basic understanding of HTML.
Objective: To understand how to structure HTML forms and give them semantics so they are usable and accessible.

The flexibility of forms makes them one of the most complex structures in HTML; you can build any kind of basic form using dedicated form elements and attributes. Using the correct structure when building an HTML form will help ensure that the form is both usable and accessible.

The <form> element

The <form> element formally defines a form and attributes that determine the form's behavior. Each time you want to create an HTML form, you must start it by using this element, nesting all the contents inside. Many assistive technologies and browser plugins can discover <form> elements and implement special hooks to make them easier to use.

We already met this in the previous article.

Warning: It's strictly forbidden to nest a form inside another form. Nesting can cause forms to behave unpredictably, so it is a bad idea.

It's always possible to use a form control outside of a <form> element. If you do so, by default that control has nothing to do with any form unless you associate it with a form using its form attribute. This was introduced to let you explicitly bind a control with a form even if it is not nested inside it.

Let's move forward and cover the structural elements you'll find nested in a form.

The <fieldset> and <legend> elements

The <fieldset> element is a convenient way to create groups of widgets that share the same purpose, for styling and semantic purposes. You can label a <fieldset> by including a <legend> element just below the opening <fieldset> tag. The text content of the <legend> formally describes the purpose of the <fieldset> it is included inside.

Many assistive technologies will use the <legend> element as if it is a part of the label of each control inside the corresponding <fieldset> element. For example, some screen readers such as Jaws and NVDA will speak the legend's content before speaking the label of each control.

Here is a little example:

html

<form> <fieldset> <legend>Fruit juice size</legend> <p> <input type="radio" name="size" id="size_1" value="small" /> <label for="size_1">Small</label> </p> <p> <input type="radio" name="size" id="size_2" value="medium" /> <label for="size_2">Medium</label> </p> <p> <input type="radio" name="size" id="size_3" value="large" /> <label for="size_3">Large</label> </p> </fieldset></form>

Note: You can find this example in fieldset-legend.html (see it live also).

When reading the above form, a screen reader will speak "Fruit juice size small" for the first widget, "Fruit juice size medium" for the second, and "Fruit juice size large" for the third.

The use case in this example is one of the most important. Each time you have a set of radio buttons, you should nest them inside a <fieldset> element. There are other use cases, and in general the <fieldset> element can also be used to section a form. Ideally, long forms should be spread across multiple pages, but if a form is getting long and must be on a single page, putting the different related sections inside different fieldsets improves usability.

Because of its influence over assistive technology, the <fieldset> element is one of the key elements for building accessible forms; however, it is your responsibility not to abuse it. If possible, each time you build a form, try to listen to how a screen reader interprets it. If it sounds odd, try to improve the form structure.

The <label> element

As we saw in the previous article, The <label> element is the formal way to define a label for an HTML form widget. This is the most important element if you want to build accessible forms — when implemented properly, screen readers will speak a form element's label along with any related instructions, as well as it being useful for sighted users. Take this example, which we saw in the previous article:

html

<label for="name">Name:</label> <input type="text" id="name" name="user_name" />

With the <label> associated correctly with the <input> via its for attribute (which contains the <input> element's id attribute), a screen reader will read out something like "Name, edit text".

There is another way to associate a form control with a label — nest the form control within the <label>, implicitly associating it.

html

<label for="name"> Name: <input type="text" id="name" name="user_name" /></label>

Even in such cases however, it is considered best practice to set the for attribute to ensure all assistive technologies understand the relationship between label and widget.

If there is no label, or if the form control is neither implicitly nor explicitly associated with a label, a screen reader will read out something like "Edit text blank", which isn't very helpful at all.

Labels are clickable, too!

Another advantage of properly set up labels is that you can click or tap the label to activate the corresponding widget. This is useful for controls like text inputs, where you can click the label as well as the input to focus it, but it is especially useful for radio buttons and checkboxes — the hit area of such a control can be very small, so it is useful to make it as easy to activate as possible.

For example, clicking on the "I like cherry" label text in the example below will toggle the selected state of the taste_cherry checkbox:

html

<form> <p> <input type="checkbox" id="taste_1" name="taste_cherry" value="cherry" /> <label for="taste_1">I like cherry</label> </p> <p> <input type="checkbox" id="taste_2" name="taste_banana" value="banana" /> <label for="taste_2">I like banana</label> </p></form>

Note: You can find this example in checkbox-label.html (see it live also).

Multiple labels

Strictly speaking, you can put multiple labels on a single widget, but this is not a good idea as some assistive technologies can have trouble handling them. In the case of multiple labels, you should nest a widget and its labels inside a single <label> element.

Let's consider this example:

html

<p>Required fields are followed by <span aria-label="required">*</span>.</p><!-- So this: --><!--div> <label for="username">Name:</label> <input id="username" type="text" name="username" required> <label for="username"><span aria-label="required">*</label></div--><!-- would be better done like this: --><!--div> <label for="username"> <span>Name:</span> <input id="username" type="text" name="username" required> <span aria-label="required">*</span> </label></div--><!-- But this is probably best: --><div> <label for="username">Name: <span aria-label="required">*</span></label> <input id="username" type="text" name="username" required /></div>

The paragraph at the top states a rule for required elements. The rule must be included before it is used so that sighted users and users of assistive technologies such as screen readers can learn what it means before they encounter a required element. While this helps inform users what an asterisk means, it can not be relied upon. A screen reader will speak an asterisk as "star" when encountered. When hovered by a sighted mouse user, "required" should appear, which is achieved by use of the title attribute. Titles being read aloud depends on the screen reader's settings, so it is more reliable to also include the aria-label attribute, which is always read by screen readers.

The above variants increase in effectiveness as you go through them:

  • In the first example, the label is not read out at all with the input — you just get "edit text blank", plus the actual labels are read out separately. The multiple <label> elements confuse the screen reader.
  • In the second example, things are a bit clearer — the label read out along with the input is "name star name edit text required", and the labels are still read out separately. Things are still a bit confusing, but it's a bit better this time because the <input> has a label associated with it.
  • The third example is best — the actual label is read out all together, and the label read out with the input is "name required edit text".

Note: You might get slightly different results, depending on your screen reader. This was tested in VoiceOver (and NVDA behaves similarly). We'd love to hear about your experiences too.

Note: You can find this example on GitHub as required-labels.html (see it live also). Don't test the example with 2 or 3 of the versions uncommented — screen readers will definitely get confused if you have multiple labels AND multiple inputs with the same ID!

Common HTML structures used with forms

Beyond the structures specific to web forms, it's good to remember that form markup is just HTML. This means that you can use all the power of HTML to structure a web form.

As you can see in the examples, it's common practice to wrap a label and its widget with a <li> element within a <ul> or <ol> list. <p> and <div> elements are also commonly used. Lists are recommended for structuring multiple checkboxes or radio buttons.

In addition to the <fieldset> element, it's also common practice to use HTML titles (e.g. h1, h2) and sectioning (e.g. <section>) to structure complex forms.

Above all, it is up to you to find a comfortable coding style that results in accessible, usable forms. Each separate section of functionality should be contained in a separate <section> element, with <fieldset> elements to contain radio buttons.

Active learning: building a form structure

Let's put these ideas into practice and build a slightly more involved form — a payment form. This form will contain a number of control types that you may not yet understand. Don't worry about this for now; you'll find out how they work in the next article (Basic native form controls). For now, read the descriptions carefully as you follow the below instructions, and start to form an appreciation of which wrapper elements we are using to structure the form, and why.

  1. To start with, make a local copy of our blank template file in a new directory on your computer.
  2. Next, create your form by adding a <form> element:

    html

    <form>
  3. Inside the <form> element, add a heading and paragraph to inform users how required fields are marked:

    html

    <h1>Payment form</h1><p> Required fields are followed by <strong><span aria-label="required">*</span></strong>.</p>
  4. Next, we'll add a larger section of code into the form, below our previous entry. Here you'll see that we are wrapping the contact information fields inside a distinct <section> element. Moreover, we have a set of three radio buttons, each of which we are putting inside its own list (<li>) element. We also have two standard text <input>s and their associated <label> elements, each contained inside a <p>, and a password input for entering a password. Add this code to your form:

    html

    <section> <h2>Contact information</h2> <fieldset> <legend>Title</legend> <ul> <li> <label for="title_1"> <input type="radio" id="title_1" name="title" value="A" /> Ace </label> </li> <li> <label for="title_2"> <input type="radio" id="title_2" name="title" value="K" /> King </label> </li> <li> <label for="title_3"> <input type="radio" id="title_3" name="title" value="Q" /> Queen </label> </li> </ul> </fieldset> <p> <label for="name"> <span>Name: </span> <strong><span aria-label="required">*</span></strong> </label> <input type="text" id="name" name="username" required /> </p> <p> <label for="mail"> <span>Email: </span> <strong><span aria-label="required">*</span></strong> </label> <input type="email" id="mail" name="usermail" required /> </p> <p> <label for="pwd"> <span>Password: </span> <strong><span aria-label="required">*</span></strong> </label> <input type="password" id="pwd" name="password" required /> </p></section>
  5. The second <section> of our form is the payment information. We have three distinct controls along with their labels, each contained inside a <p>. The first is a drop-down menu (<select>) for selecting credit card type. The second is an <input> element of type tel, for entering a credit card number; while we could have used the number type, we don't want the number's spinner UI. The last one is an <input> element of type text, for entering the expiration date of the card; this includes a placeholder attribute indicating the correct format, and a pattern that tests that the entered date has the correct format. These newer input types are reintroduced in The HTML5 input types. Enter the following below the previous section:

    html

    <section> <h2>Payment information</h2> <p> <label for="card"> <span>Card type:</span> </label> <select id="card" name="usercard"> <option value="visa">Visa</option> <option value="mc">Mastercard</option> <option value="amex">American Express</option> </select> </p> <p> <label for="number"> <span>Card number:</span> <strong><span aria-label="required">*</span></strong> </label> <input type="tel" id="number" name="cardnumber" required /> </p> <p> <label for="expiration"> <span>Expiration date:</span> <strong><span aria-label="required">*</span></strong> </label> <input type="text" id="expiration" name="expiration" required placeholder="MM/YY" pattern="^(0[1-9]|1[0-2])\/([0-9]{2})$" /> </p></section>
  6. The last section we'll add is a lot simpler, containing only a <button> of type submit, for submitting the form data. Add this to the bottom of your form now:

    html

    <section> <p> <button type="submit">Validate the payment</button> </p></section>
  7. Finally, complete your form by adding the outer <form> closing tag:

    html

    </form>
    h1 { margin-top: 0;}ul { margin: 0; padding: 0; list-style: none;}form { margin: 0 auto; width: 400px; padding: 1em; border: 1px solid #ccc; border-radius: 1em;}div + div { margin-top: 1em;}label span { display: inline-block; text-align: right;}input,textarea { font: 1em sans-serif; width: 250px; box-sizing: border-box; border: 1px solid #999;}input[type="checkbox"],input[type="radio"] { width: auto; border: none;}input:focus,textarea:focus { border-color: #000;}textarea { vertical-align: top; height: 5em; resize: vertical;}fieldset { width: 250px; box-sizing: border-box; border: 1px solid #999;}button { margin: 20px 0 0 0;}label { position: relative; display: inline-block;}p label { width: 100%;}label em { position: absolute; right: 5px; top: 20px;}

We applied some extra CSS to the finished form below. If you'd like to make changes to the appearance of your form, you can copy styles from the example or visit Styling web forms.

Test your skills!

You've reached the end of this article, but can you remember the most important information? You can find a further test to verify that you've retained this information before you move on — see Test your skills: Form structure.

Summary

You now have all the knowledge you'll need to properly structure your web forms. We will cover many of the features introduced here in the next few articles, with the next article looking in more detail at using all the different types of form widgets you'll want to use to collect information from your users.

See also

  • Previous
  • Overview: Web form building blocks
  • Next

Advanced Topics

  • How to build custom form controls
  • Sending forms through JavaScript
  • Property compatibility table for form widgets
How to structure a web form - Learn web development | MDN (2024)

FAQs

What is the structure of a web form? ›

Web Forms are made up of two components: the visual portion (the ASPX file), and the code behind the form, which resides in a separate class file. The main purpose of Web Forms is to overcome the limitations of ASP and separate view from the application logic.

What is web form development? ›

Web Forms are pages that your users request using their browser. These pages can be written using a combination of HTML, client-script, server controls, and server code.

What are the 3 basic website structures? ›

Web sites are built around basic structural themes. These fundamental architectures govern the navigational interface of the Web site and mold the user's mental models of how the information is organized. Three essential structures can be used to build a Web site: sequences, hierarchies, and webs.

What is the basic structure of web development? ›

The four main website structures are hierarchical, sequential, matrix and database. Understanding website structure is essential for optimizing user experience and SEO.

How do I create a new Webform? ›

How To Make a Web Form
  1. Make the purpose of your form clear.
  2. Choose your web form type.
  3. Add your form fields.
  4. Embed your web form on your website.
  5. Make your web form secure.
  6. Test your web form and analyze your results.
Sep 14, 2022

What is a web form template? ›

Form templates are re-usable configurations which let you create new forms. By default, form templates are stored with Web application templates in the Resources > Templates > Web application templates node. From here you can either create new templates or convert an existing form into a template.

How do I create a form in developer? ›

How to create a fill-in form in Word in 5 steps
  1. Open the program and go to the "Developer" tab. When opening the program, make sure it's displaying the "Developer" tab in the ribbon. ...
  2. Create the fill-in form. ...
  3. Place the content in the form. ...
  4. Create or change properties for content controls. ...
  5. Add protection to the fill-in form.

How do you structure HTML correctly? ›

Within a web page, some HTML tags are required for the page to be displayed correctly. These tags are <html> , <head> , <title> and <body> . The <html> tags must begin and end the document and the <head> tags must appear before the <body> tags. Also, the <title> tags must be within the <head> tags.

How to improve HTML structure? ›

Table of Contents
  1. Always Declare a Doctype.
  2. Use Meaningful Title Tags.
  3. Use Descriptive Meta Tags.
  4. Use Divs to Divide Your Layout into Major Sections.
  5. Separate Content from Presentation.
  6. Minify and Unify CSS.
  7. Minify, Unify and Move Down JavaScript.
  8. Use Heading Elements Wisely.

What is the correct HTML for creating a form? ›

The <form> tag is used to create an HTML form for user input. The <form> element can contain one or more of the following form elements: <input> <textarea>

What replaced web forms? ›

Microsoft last week set the record straight that Web Forms, part of ASP.NET from the old . NET Framework, isn't going away in Visual Studio 2022, though it recommends Blazor as a . NET 6 alternative.

What are 3 types of web development? ›

There are three main types of web development: front-end development, back-end development, and full stack development.

What is structure in web application? ›

A website structure is the way a website's content and pages are organized and interconnected. It involves the hierarchical arrangement of web pages and their relationships to one another. Website structure helps visitors and search engines navigate and understand the website's content.

What is structure of form? ›

Form describes the format, or the way the text is presented to the reader. This could be a short story, a film script or an essay. Structure describes how the information in the text is organised. This could be how the writer moves the narrative of the text from beginning to end using paragraphs and chapters.

What is the structure of web writing? ›

Keep paragraphs short. Keep sentences short. Use inverted pyramid writing style. Use subheadings or bullets to summarize text and make it easier to scan.

Top Articles
MASAI LTD - 11313772 - Free Company Report
Injunction, Declaration, Quo Warranto, and Habeas Corpus
Lkq Pull-A-Part
Syracuse Pets Craigslist
Savory Dishes Made Simple: 6 Ingredients to Kick Up the Flavor - MSGdish
Look Who Got Busted New Braunfels
Join MileSplit to get access to the latest news, films, and events!
T-Mobile SW 56th Street &amp; SW 137th Ave | Miami, FL
Ketchum Who's Gotta Catch Em All Crossword Clue
Public Agent.502
Edward Scissorhands 123Movies
Craigslist Farm And Garden Yakima Wa
I Don'T Give A Rat'S Ass: The Meaning And Origin Of This Phrase - Berry Patch Farms
Nextdoor Myvidster
Karen Canelon Only
Becker County Jail Inmate List
Myzmanim Highland Park Nj
2006 Lebanon War | Summary, Casualties, & Israel
Sky Park Stl Coupon
Norte Asesores Nanda
Kfc $30 Fill Up Substitute Sides
18002226885
Liquor Barn Redding
Watch Fifty Shades Darker Online Putlocker
Diablo 3 Legendary Reforge
Starlight River Multiplayer
Waifu Fighter F95
Zwei-Faktor-Authentifizierung (2FA) für Ihre HubSpot-Anmeldung einrichten
Cambria County Most Wanted 2022
Fto Kewanee
Lox Club Gift Code
Used Zero Turn Mowers | Shop Used Zero Turn Mowers for Sale - GSA Equipment
Ltlv Las Vegas
De Chromecast met Google TV en stembediening instellen
Costco Gasoline and Sam's Club Fuel Center Gas Savings - Consumer Reports
Encore Atlanta Cheer Competition
Apex Item Store.com
charleston rooms & shares - craigslist
Ryker Webb 2022
Chloe Dicarlo
Premier Nails Lebanon Pa
Tamusso
236 As A Fraction
Lucky Money Strain
Watkins Brothers Funeral Homes Macdonald Chapel Howell Obituaries
Baywatch 2017 123Movies
1 Reilly Cerca De Mí
What to Know About Ophidiophobia (Fear of Snakes)
18006548818
Does Lowes Take Ebt
Schedule360 Minuteclinic
R Warhammer Competitive
Latest Posts
Article information

Author: Otha Schamberger

Last Updated:

Views: 5865

Rating: 4.4 / 5 (55 voted)

Reviews: 94% of readers found this page helpful

Author information

Name: Otha Schamberger

Birthday: 1999-08-15

Address: Suite 490 606 Hammes Ferry, Carterhaven, IL 62290

Phone: +8557035444877

Job: Forward IT Agent

Hobby: Fishing, Flying, Jewelry making, Digital arts, Sand art, Parkour, tabletop games

Introduction: My name is Otha Schamberger, I am a vast, good, healthy, cheerful, energetic, gorgeous, magnificent person who loves writing and wants to share my knowledge and understanding with you.