<form>
  <h2>Bestil pizza</h2>

  <label>Leveringsform</label>
  <select id="delivery">
    <span>Afhentning</span>
    <span>Levering</span>
  </select>

  <label>Navn</label>
  <input id="name" type="text" />

  <label for="phone">Telefon</label>
  <input id="phone" type="text" />

  <div class="group">
    <div class="title">Bund</div>

    <label>
      <input type="radio" value="thin" />
      Tynd
    </label>

    <label>
      <input type="radio" value="classic" />
      Klassisk
    </label>

    <label>
      <input type="radio" value="deep-dish" />
      Dyb bund
    </label>
  </div>

  <div class="group">
    <div class="title">Fyld</div>

    <label>
      <input type="checkbox" value="pepperoni" />
      Pepperoni
    </label>

    <label>
      <input type="checkbox" value="mushrooms" />
      Champignon
    </label>

    <label>
      <input type="checkbox" value="extra-cheese" />
      Ekstra ost
    </label>
  </div>

  <div>Kommentar</div>
  <textarea id="comment"></textarea>

  <button>Bestil</button>
</form>
Preview

Bestil pizza

Bund
Fyld
Kommentar