Areas we cover

We are based in Burbage (LE10) in Leicestershire and travel up to 50 miles from here is included in all of our packages.

After 50 miles there is a small charge per mile.

 

We cover the whole of the Midlands

Towns/Cities/Areas we cover within 50 miles

Birmingham

Buckingham

Chesterfield

Coventry

Daventry

Derby

Hinckley

Kenilworth

Leamington Spa

Leicester

Loughborough

Milton Keynes

Nottingham

Nuneaton

Peak District

Peterborough

Rugby

Stafford

Stoke-on-Trent

Stratford-upon-Avon

Warwick

Wolverhampton

Worcester

Counties

Bedfordshire

Cambridgeshire

Derbyshire

Gloucestershire

Hertfordshire

Leicestershire

Lincolnshire

Northamptionshire

Nottingamshire

Oxfordshire

Shropshire

Staffordshire

Warwickshire

Worcestershire

<div>
  <p style="font-family: 'Museo Sans Condensed'; font-size: 16px;">Enter your wedding date here:</p>
  <input type="text" placeholder="MM/DD/YYYY" id="wedding-date"></input>
  <button style="font-family: 'Museo Sans Condensed'; font-size: 16px; border: 2px solid orange; background-color: transparent;">Calculate</button>
  <p style="font-family: 'Museo Sans Condensed'; font-size: 20px; font-weight: bold;" id="days-until"></p>
</div>
var button = document.querySelector("button");
var input = document.querySelector("input");
var output = document.querySelector("#days-until");
button.addEventListener("click", function() {
  var weddingDate = new Date(input.value);
  var currentDate = new Date();
  var timeUntilWedding = weddingDate - currentDate;
  var daysUntilWedding = Math.floor(timeUntilWedding / (1000 * 60 * 60 * 24));
  output.innerHTML = daysUntilWedding + " days until your wedding!";
});