bannerbuilt.com Open in urlscan Pro
151.101.193.91  Public Scan

Submitted URL: https://new.bannerbuilt.com/
Effective URL: https://bannerbuilt.com/
Submission: On December 12 via api from US — Scanned from IL

Form analysis 3 forms found in the DOM

Name: oi-home-search-formPOST

<form class="oi-filter-form w-100" data-filter-type="homepage" id="oi-filter-form" method="post" name="oi-home-search-form" data-hs-cf-bound="true"><input hidden="" name="b" value=""><input hidden="" name="url" value="/">
  <div class="d-none d-md-block">
    <div class="input-group mb-3">
      <div class="form-floating form-floating-group"><select aria-label="City" class="form-select" id="city" name="city">
          <option value="">Select City</option>
          <option value="=Cookeville">Cookeville</option>
        </select><label class="fw-semibold text-primary" for="city">City</label></div>
      <div class="form-floating form-floating-group"><select aria-label="Square Footage" class="form-select" id="square_footage" name="square_footage">
          <option value="">Sq.Ft.</option>
          <option value="%1000-1500">Under 1,500</option>
          <option value="%1500-2000">Over 1,500</option>
        </select><label class="fw-semibold text-primary" for="square_footage">Square Footage</label></div>
      <div class="form-floating form-floating-group"><select aria-label="Price Range" class="form-select border-end-0" id="price" name="price">
          <option value="">Price Range</option>
          <option value="%250000-300000">Under $300,000</option>
          <option value="%300000-350000">Over $300,000</option>
        </select><label class="fw-semibold text-primary" for="price">Price Range</label></div>
      <div class="bg-light form-floating-btn rounded-end p-2"><button class="oi-filter-click btn btn-primary px-4 text-uppercase w-100 h-100" type="button"><i class="fa-light fa-magnifying-glass fs-5 me-2"></i> Find Your Home</button></div>
    </div>
  </div>
  <div class="d-md-none">
    <div class="mb-3">
      <div class="form-floating"><select aria-label="City" class="form-select mb-3" name="city">
          <option value="">Select City</option>
          <option value="=Cookeville">Cookeville</option>
        </select><label class="fw-semibold text-primary" for="city">City</label></div>
      <div class="form-floating"><select aria-label="Square Footage" class="form-select mb-3" name="square_footage">
          <option value="">Sq.Ft.</option>
          <option value="%1000-1500">Under 1,500</option>
          <option value="%1500-2000">Over 1,500</option>
        </select><label class="fw-semibold text-primary" for="square_footage">Square Footage</label></div>
      <div class="form-floating"><select aria-label="Price Range" class="form-select mb-3" name="price">
          <option value="">Price Range</option>
          <option value="%250000-300000">Under $300,000</option>
          <option value="%300000-350000">Over $300,000</option>
        </select><label class="fw-semibold text-primary" for="price">Price Range</label></div><button class="oi-filter-click btn btn-outline-light mx-auto d-block" type="button"><i class="fa-light fa-magnifying-glass me-2"></i>Find Your Home</button>
    </div>
  </div>
</form>

Name: oi-filter-formPOST

<form class="oi-filter-form w-100" data-filter-type="homepage" id="oi-filter-form-bottom" method="post" name="oi-filter-form" data-hs-cf-bound="true">
  <div class="row gx-3 gy-4 align-items-center"><input hidden="" name="b" value=""><input hidden="" name="url" value="/"><input hidden="" name="sort" value="">
    <div class="filter-col select-col col-12">
      <div class="form-floating"><select aria-label="Search by City" class="form-select" name="city">
          <option value="">Select City</option>
          <option value="=Cookeville">Cookeville</option>
        </select><label class="fw-semibold text-primary" for="city">Search by City</label></div>
    </div>
    <div class="filter-col col-12 pb-4">
      <div class="range-slider-wrap"><label class="form-label xsmall" for="price-range">Price Range</label><span class="irs irs--round irs-custom"><span class="irs"><span class="irs-line" tabindex="0"></span><span class="irs-min"
              style="display: none; visibility: hidden;">0</span><span class="irs-max" style="display: none; visibility: hidden;">1</span><span class="irs-from" style="visibility: visible; left: 0%;">$250,000</span><span class="irs-to"
              style="visibility: visible; left: 85.814%;">$350,000</span><span class="irs-single" style="visibility: hidden; left: 34.3023%;">$250,000-$350,000</span></span><span class="irs-grid">1</span><span class="irs-bar"
            style="left: 2.7907%; width: 94.4186%;"></span><span class="irs-shadow shadow-from" style="display: none;"></span><span class="irs-shadow shadow-to" style="display: none;"></span><span class="irs-handle from"
            style="left: 0%;"><i></i><i></i><i></i></span><span class="irs-handle to" style="left: 94.4186%;"><i></i><i></i><i></i></span></span><input class="oi-clear-on-reset irs-hidden-input" id="priceSlider" type="text" value="250000-350000"
          readonly="true" data-from="250000" data-to="350000" tabindex="-1"><input class="oi-clear-on-reset" id="price-range" name="price" type="hidden" value=""></div>
      <script type="text/javascript">
        ;
        document.addEventListener("DOMContentLoaded", function(event) {
          const priceInputEl = document.getElementById('price-range');
          var priceRangeSlider = ionRangeSlider('#priceSlider', {
            skin: "round",
            type: "double",
            min: 250000,
            max: 350000,
            step: 500,
            prefix: "$",
            values_separator: "-",
            input_values_separator: "-",
            prettify_separator: ",",
            hide_min_max: true,
            force_edges: true,
            extra_classes: "irs-custom",
            onFinish: function(data) {
              priceInputEl.value = '%' + data.from + '-' + data.to;
              priceInputEl.dispatchEvent(new Event('change'));
            },
          });
          if (priceInputEl.value) {
            let priceValues = priceInputEl.value.slice(1).split('-');
            priceRangeSlider.update({
              from: priceValues[0],
              to: priceValues[1],
            });
          } else if (priceInputEl.value === '') {
            priceRangeSlider.update({
              from: priceRangeSlider.min,
              to: priceRangeSlider.max,
            });
          }
        });
      </script>
    </div>
    <div class="filter-col col-12 pb-4">
      <div class="range-slider-wrap"><label class="form-label xsmall" for="square_footage">Square Footage</label><span class="irs irs--round irs-custom"><span class="irs"><span class="irs-line" tabindex="0"></span><span class="irs-min"
              style="display: none; visibility: hidden;">0</span><span class="irs-max" style="display: none; visibility: hidden;">1</span><span class="irs-from" style="visibility: visible; left: 0%;">1,000</span><span class="irs-to"
              style="visibility: visible; left: 81.6279%;">2,000 Sq. Ft.</span><span class="irs-single" style="visibility: hidden; left: 34.5349%;">1,000-2,000 Sq. Ft.</span></span><span class="irs-grid">1</span><span class="irs-bar"
            style="left: 2.7907%; width: 94.4186%;"></span><span class="irs-shadow shadow-from" style="display: none;"></span><span class="irs-shadow shadow-to" style="display: none;"></span><span class="irs-handle from"
            style="left: 0%;"><i></i><i></i><i></i></span><span class="irs-handle to" style="left: 94.4186%;"><i></i><i></i><i></i></span></span><input class="oi-clear-on-reset irs-hidden-input" id="sqftSlider" type="text" value="1000-2000"
          readonly="true" data-from="1000" data-to="2000" tabindex="-1"><input class="oi-clear-on-reset" id="sqft" name="square_footage" type="hidden" value=""></div>
      <script type="text/javascript">
        ;
        document.addEventListener("DOMContentLoaded", function(event) {
          const sqftInputEl = document.getElementById('sqft');
          const sqftRangeSlider = ionRangeSlider('#sqftSlider', {
            skin: "round",
            type: "double",
            min: 1000,
            max: 2000,
            step: 100,
            max_postfix: " Sq. Ft.",
            values_separator: "-",
            input_values_separator: "-",
            prettify_separator: ",",
            hide_min_max: true,
            force_edges: true,
            extra_classes: "irs-custom",
            onFinish: function(data) {
              sqftInputEl.value = '%' + data.from + '-' + data.to;
              sqftInputEl.dispatchEvent(new Event('change'));
            },
          });
          if (sqftInputEl.value) {
            let sqftValues = sqftInputEl.value.slice(1).split('-');
            sqftRangeSlider.update({
              from: sqftValues[0],
              to: sqftValues[1]
            });
          } else if (sqftInputEl.value === '') {
            sqftRangeSlider.update({
              from: sqftRangeSlider.min,
              to: sqftRangeSlider.max
            });
          }
        });
      </script>
    </div>
    <div class="col-12 mt-4"><button class="oi-filter-click btn btn-primary px-4 text-uppercase w-100 h-100" id="search-inc-button" type="button"><i class="fa-light fa-magnifying-glass me-2 mb-0"></i> <span>Find Your Home</span></button></div>
  </div>
</form>

<form action="" class="search" data-hs-cf-bound="true">
  <div class="input-group overlay-btn-group autocomplete_wrapper"><input autocomplete="off" class="form-control oi-autocomplete bg-white border-0 shadow-none" data-oi-autocomplete-autoload="true"
      data-placeholder=" Search by Community, City, State, or Address..." data-scope="builder|state,submarket|city,location|neighborhood,spec|home,plan" data-wrapper="false" id="modal-search" name="search" type="text"
      aria-label=" Search by Community, City, State, or Address..." placeholder=" Search by Community, City, State, or Address..." aria-controls="modal-search-results-list" aria-autocomplete="both" role="combobox"
      aria-owns="modal-search-results-list" aria-haspopup="true" aria-expanded="false">
    <ul id="modal-search-results-list" role="listbox" hidden="" class="results-list"></ul>
    <div class="btn btn-primary rounded ms-1"><i class="autocomplete-icon fa-light fa-magnifying-glass"></i></div>
  </div>
</form>

Text Content

Now Selling in Cookeville, TN at The Reserve at the Country Club


 * Search Homes
 * Find Your Home
   * Communities
   * Available Homes
   * Floor Plans
   * Financing and Incentives
 * Galleries
 * About Us
   * Who We Are
   * Our Process
 * Contact
   * Contact Us
   * Customer Support

Call Or Message (931) 346-7755 (931) 346-7755
Call Or Message (931) 346-7755 (931) 346-7755


WHERE THE AMERICAN DREAM FINDS HOME

Select CityCookevilleCity
Sq.Ft.Under 1,500Over 1,500Square Footage
Price RangeUnder $300,000Over $300,000Price Range
Find Your Home
Select CityCookevilleCity
Sq.Ft.Under 1,500Over 1,500Square Footage
Price RangeUnder $300,000Over $300,000Price Range
Find Your Home

STEP BY STEP JOURNEY

At Banner Built, we keep the process simple. Select a home and pick the
selections that are important to you and we'll take care of the rest so you can
love the place you live. Discover more about the homebuying process.

Learn More

FIND YOUR PERFECT FIT

Our floor plans have been specially designed to offer you affordability so
homeownership can be manageable for your budget.

Discover Our Plans

CURATED DESIGN AT THE RIGHT PRICE

Making the right decisions on the finishes of your home can be overwhelming. Our
designers have curated a collection that will best meet your style and keep the
homebuilding process stress-free. Discover our Interior and Exterior
collections.




GET PRE-APPROVED WITH OUR PREFERRED LENDER

--------------------------------------------------------------------------------

Get pre-approved with our trusted lender to simplify your home buying process
and ensure a smooth, stress-free experience.


Learn More


BUILT WITH PRIDE, CRAFTED FOR YOU

Good craftsmanship drives our process forward. We take pride in building a home
that lasts a lifetime and we are so confident that we offer a competitive
warranty to take care of any problems.

Learn More


OUR STORY, VALUES, & COMMITMENT

A home should embody comfort, safety, stability, and warmth. Our passion is
creating that for anyone who has the desire to own their own home. Learn more
about what drives us. 

Learn More


BEGIN YOUR HOME SEARCH
FIND YOUR HOME


BEGIN YOUR HOME SEARCH
FIND YOUR HOME


SEARCH NEW HOMES

Select CityCookevilleSearch by City
Price Range01$250,000$350,000$250,000-$350,0001
Square Footage011,0002,000 Sq. Ft.1,000-2,000 Sq. Ft.1
Find Your Home


QUESTIONS?

Or give us a call at (931) 346-7755




a Legacy South subsidiary

Locations
 * The Reserve

Navigation
 * Communities

 * Floor Plans

 * Who We Are

 * Our Process

 * Galleries

 * Financing and Incentives

 * Contact Us

 * Customer Support

Our Social Facebook Instagram Twitter
Message or Call (931) 346-7755Send Message
© 2024 Copyright Banner Built Homes 2405 Dickerson Pike, Nashville, TN 37207

Message on Renderings: The information, images, and materials displayed on this
website are provided for general informational purposes only. Renderings,
illustrations, and floor plans are artistic representations intended to offer
prospective buyers a vision of the completed home and may differ from actual
homes. Variations in colors, materials, finishes, and design features may occur.
Banner Built Homes reserves the right to make changes to plans, specifications,
dimensions, and materials without notice or obligation, and at its sole
discretion.

Certain images may depict options or upgrades that are not included in the
standard home package and may be available for an additional cost. Please
consult with a Banner Built Homes sales representative to verify all details
specific to your purchase.

Message on Monthly Payments: Displayed monthly payment is for principal and
interest only. Assumes fixed Conventional loan, 20% down payment required, a 680
credit score and a 30 year term. The assumed rate used to calculate payment is
subject to change at anytime and without notice. Payments are for illustrative
purposes only. Incentives and contributions by Legacy South Builders LLC are
subject to certain terms, conditions, and restrictions and certain incentives
may be limited by the lender or could affect the loan amount. This communication
is provided for informational purposes only and should not be relied upon by
you, not to be construed as a quotation or offer of credit from any lending
institution. 

Programs, prices, rates, terms and conditions subject to change without notice.
Actual rates available to you may vary based upon a number of factors including
credit score, documentation level and market conditions. All loans subject to
credit approval. Other restrictions may apply. Supply of homes and homesites at
these prices are limited and subject to availability.

Other Disclaimers:

Banner Built Homes is a subsidiary of Legacy South Builders LLC, and any
references to Banner Built Homes also include its affiliation with Legacy South
Builders. This website and its content, including prices, promotions, and
availability of homes, are subject to change at any time without prior notice.
All pricing, availability, and promotions are specific to each community and
home, and Banner Built Homes does not guarantee the availability or pricing
accuracy of specific homes shown on this site.

This website may contain links to third-party websites. Banner Built Homes
provides these links for convenience only and is not responsible for the content
or accuracy of any third-party websites.

By using this website, you acknowledge and accept this disclaimer and agree to
review and comply with all updates, policies, and terms as they are provided by
Banner Built Homes.

 Powered by Homefiniti®.
Designed and engineered by ONeil Interactive.
 
×