<div class="input-group">
<label for="customer_name">Name </label>
<input id="customer_name">
<div class="input-group">
<label for="phone_number">Phone </label>
<input type="tel" id="phone_number">
<div class="input-group">
<label for="email_address">Email </label>
<input type="email" id="email_address">
<div class="input-group">
<label for="pickup_time">Pickup Date/Time</label>
<input type="datetime-local" id="pickup_time">
<div class="input-group">
<label for="pickup_place">Pickup Place</label>
<select id="pickup_place">
<option value="" selected="selected">Select One</option>
<option value="office" >Taxi Office</option>
<option value="town_hall" >Town Hall</option>
<option value="telepathy" >We'll Guess!</option>
<div class="input-group">
<label for="dropoff_place">Dropoff Place</label>
<input type="text" id="dropoff_place" list="destinations">
<datalist id="destinations">
<option value="Fred Flinstone's House">
<legend>Which taxi do you require?</legend>
<label> <input type="radio" id="taxi_car" value="car"> Car </label>
<label> <input type="radio" id="taxi_van" value="van"> Van </label>
<label> <input type="radio" id="taxi_tuk" value="tuktuk"> Tuk Tuk </label>
<fieldset class="extras">
<label> <input type="checkbox" id="extras_baby" value="baby"> Baby Seat </label>
<label> <input type="checkbox" id="extras_wheel" value="wheelchair"> Wheelchair Access </label>
<label> <input type="checkbox" id="extras_tip" value="tip"> Stock Tip </label>
<button id="submit">Submit Booking</button>