Service areas
In general, we deliver within a 100km radius from our Cooma Batch Plant.
Up to Michelago, down to Bombala, and across to Cabramurra and the Ski Resorts.
We are always happy to discuss and quote your project.
Contact us here.
<!DOCTYPE html> <html> <body> <div class="calculator"> <h3>Get an instant price for your website</h3> <p>What type of website do you need?</p> <label><input type="checkbox" id="simpleServices"> Simple Services </label><br> <label><input type="checkbox" id="portfolio"> Portfolio </label><br> <label><input type="checkbox" id="eCommerce"> E-Commerce (up to 50 products) </label><br> <label><input type="checkbox" id="onlineCourse"> Online Course </label><br> <label><input type="checkbox" id="blog"> Blog </label><br> <p> How many pages do you need?</p> <label><input type="radio" name="pages" id="1-5"> 1-5 pages</label><br> <label><input type="radio" name="pages" id="5-10"> 5-10 pages</label><br> <label><input type="radio" name="pages" id="10-20"> 10-20 pages</label><br> <label><input type="radio" name="pages" id="20+"> 20+ pages</label><br> <p>Do you want to add website copy (Up to 10 pages)?</p> <label><input type="radio" name="copy" id="yes"> Yes Please </label><br> <label><input type="radio" name="copy" id="no"> No Thanks </label><br> <div class="total-price-container"> <p>Guide Price: £<span id="totalPrice">0</span></p> </div> <div class="calculate-button"> <!-- Added div here --> <button onclick="calculatePrice()">Calculate Price</button> </div> </div> <script> function calculatePrice() { var total = 0; if (document.getElementById("simpleServices").checked) total += 1500; if (document.getElementById("portfolio").checked) total += 1800; if (document.getElementById("eCommerce").checked) total += 2500; if (document.getElementById("onlineCourse").checked) total += 2600; if (document.getElementById("blog").checked) total += 1500; if (document.getElementById("1-5").checked) total += 200; if (document.getElementById("5-10").checked) total += 500; if (document.getElementById("10-20").checked) total += 800; if (document.getElementById("20+").checked) total += 1000; if (document.getElementById("yes").checked) total += 500; document.getElementById("totalPrice").textContent = total; } </script> </body> </html>