Advertisement
Guest User

Untitled

a guest
Jul 17th, 2019
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.47 KB | None | 0 0
  1. <div class="mulch-calculator">
  2. <h2>Mulch Calculator</h2>
  3.  
  4. <section>
  5. <fieldset>
  6. <div class="row">
  7. <label for="mulch-shape">Shape</label>
  8. <select id="mulch-shape" class="mulch-shape" name="mulch-shape">
  9. <option value="rect">Rectangle / oval</option>
  10. <option value="circ">Circle</option>
  11. </select>
  12. </div>
  13. <div class="row mulch-length-row">
  14. <label for="mulch-length">Length (ft.)</label>
  15. <input type="text" id="mulch-length" class="mulch-length" name="mulch-length" size="2" maxlength="10" value="" />
  16. </div>
  17. <div class="row mulch-width-row">
  18. <label for="mulch-width">Width (ft.)</label>
  19. <input type="text" id="mulch-width" class="mulch-width" name="mulch-width" size="2" maxlength="10" value="" />
  20. </div>
  21. <div class="row mulch-diam-row hidden">
  22. <label for="mulch-diam">Diameter (ft.)</label>
  23. <input type="text" id="mulch-diam" class="mulch-diam" name="mulch-diam" size="2" maxlength="10" value="" />
  24. </div>
  25. <div class="row">
  26. <label for="mulch-thick">Thickness (in.)</label>
  27. <input type="text" id="mulch-thick" class="mulch-thick" name="mulch-thick" size="2" maxlength="10" value="" />
  28. </div>
  29. <div class="row last">
  30. <input type="submit" id="mulch-calc" class="mulch-calc" name="much-calc" value="Calculate" />
  31. </div>
  32. </fieldset>
  33. <div class="mulch-result"></div>
  34. </section>
  35. </div><!-- .mulch-calculator -->
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement