1099-oddstad.com Open in urlscan Pro
3.33.207.30  Public Scan

URL: https://1099-oddstad.com/
Submission: On August 04 via api from US — Scanned from DE

Form analysis 2 forms found in the DOM

<form @submit.prevent="beforeSubmitForm" id="agent-contact-form" novalidate="" class="grid grid-cols-1 gap-y-4 sm:gap-x-8 md:grid-cols-2">
  <div class="flex flex-col gap-2.5">
    <div class="text-left">
      <label for="name" class="text-left mb-2">NAME</label>
      <div class="mt-1 text-left">
        <input type="text" name="name" id="name" autocomplete="name" class="block w-full border-2 border-neutral-200 py-2 px-3 focus:outline-none
                                           focus:ring-0 focus:border-neutral-500">
        <span x-show="!validForm.fields.name.valid" class="error-msg">Name cannot be empty</span>
      </div>
    </div>
    <div class="text-left">
      <label for="email" class="text-left mb-2">EMAIL</label>
      <div class="mt-1 text-left">
        <input id="email" name="email" type="email" autocomplete="email" class="block w-full border-2 border-neutral-200 py-2 px-3 focus:outline-none
                                            focus:ring-0 focus:border-neutral-500" data-error-msg="Email address must be a valid address">
        <span x-show="!validForm.fields.email.valid &amp;&amp; validForm.fields.email.rule === 'required'" class="error-msg">Email cannot be empty</span>
        <span x-show="!validForm.fields.email.valid &amp;&amp; validForm.fields.email.rule === 'email'" class="error-msg">Provide a valid email address</span>
      </div>
    </div>
    <div class="text-left">
      <label for="phone-number" class="text-left mb-2">PHONE</label>
      <div class="mt-1 text-left">
        <input type="text" name="phone" id="phone-number" autocomplete="phone-number" placeholder="(415)555-1234" class="block w-full border-2 border-neutral-200 py-2 px-3 focus:outline-none
                                            focus:ring-0 focus:border-neutral-500" data-error-msg="Phone number cannot be empty">
        <span x-show="!validForm.fields.phone.valid" class="error-msg">Phone number cannot be empty</span>
      </div>
    </div>
  </div>
  <div class="flex flex-col">
    <div class="flex justify-between">
      <label for="message">MESSAGE</label>
    </div>
    <div class="mt-1 h-full text-left">
      <textarea id="message" name="message" rows="4" placeholder="Write your message here..." class="block w-full h-full border-2 border-neutral-200 py-2 px-3 resize-none
                                          focus:outline-none focus:ring-0 focus:border-neutral-500" aria-describedby="message-max"></textarea>
      <span x-show="!validForm.fields.message.valid" class="error-msg">Message cannot be empty</span>
    </div>
  </div>
  <div class="sm:flex sm:justify-center text-sm mt-2 md:col-span-2">
    <p>The site is protected by reCAPTCHA and the <a href="https://policies.google.com/privacy" class="hover:underline" target="_blank">Google Privacy Policy</a> and
      <a href="https://policies.google.com/terms" class="hover:underline" target="_blank">Terms of Service</a> apply. </p>
  </div>
  <div class="flex justify-center md:col-span-2">
    <button type="submit" class="button-style mt-1 disabled:cursor-not-allowed disabled:opacity-50
                                    md:!px-12 w-full md:w-auto" id="contact-submit" x-bind:disabled="sendingForm"> Send <i class="fa-duotone fa-spinner-third fa-spin ml-2" x-show="sendingForm"></i>
    </button>
  </div>
</form>

<form @submit.prevent="beforeSubmitForm" id="agent-contact-form" novalidate="" class="grid grid-cols-1 gap-y-4 sm:gap-x-8 md:grid-cols-2">
  <div class="flex flex-col gap-2.5">
    <div class="text-left">
      <label for="name" class="text-left mb-2">NAME</label>
      <div class="mt-1 text-left">
        <input type="text" name="name" id="name" autocomplete="name" class="block w-full border-2 border-neutral-200 py-2 px-3 focus:outline-none
                                           focus:ring-0 focus:border-neutral-500">
        <span x-show="!validForm.fields.name.valid" class="error-msg" style="display: none;">Name cannot be empty</span>
      </div>
    </div>
    <div class="text-left">
      <label for="email" class="text-left mb-2">EMAIL</label>
      <div class="mt-1 text-left">
        <input id="email" name="email" type="email" autocomplete="email" class="block w-full border-2 border-neutral-200 py-2 px-3 focus:outline-none
                                            focus:ring-0 focus:border-neutral-500" data-error-msg="Email address must be a valid address">
        <span x-show="!validForm.fields.email.valid &amp;&amp; validForm.fields.email.rule === 'required'" class="error-msg" style="display: none;">Email cannot be empty</span>
        <span x-show="!validForm.fields.email.valid &amp;&amp; validForm.fields.email.rule === 'email'" class="error-msg" style="display: none;">Provide a valid email address</span>
      </div>
    </div>
    <div class="text-left">
      <label for="phone-number" class="text-left mb-2">PHONE</label>
      <div class="mt-1 text-left">
        <input type="text" name="phone" id="phone-number" autocomplete="phone-number" placeholder="(415)555-1234" class="block w-full border-2 border-neutral-200 py-2 px-3 focus:outline-none
                                            focus:ring-0 focus:border-neutral-500" data-error-msg="Phone number cannot be empty">
        <span x-show="!validForm.fields.phone.valid" class="error-msg" style="display: none;">Phone number cannot be empty</span>
      </div>
    </div>
  </div>
  <div class="flex flex-col">
    <div class="flex justify-between">
      <label for="message">MESSAGE</label>
    </div>
    <div class="mt-1 h-full text-left">
      <textarea id="message" name="message" rows="4" placeholder="Write your message here..." class="block w-full h-full border-2 border-neutral-200 py-2 px-3 resize-none
                                          focus:outline-none focus:ring-0 focus:border-neutral-500" aria-describedby="message-max"></textarea>
      <span x-show="!validForm.fields.message.valid" class="error-msg" style="display: none;">Message cannot be empty</span>
    </div>
  </div>
  <div class="sm:flex sm:justify-center text-sm mt-2 md:col-span-2">
    <p>The site is protected by reCAPTCHA and the <a href="https://policies.google.com/privacy" class="hover:underline" target="_blank">Google Privacy Policy</a> and
      <a href="https://policies.google.com/terms" class="hover:underline" target="_blank">Terms of Service</a> apply. </p>
  </div>
  <div class="flex justify-center md:col-span-2">
    <button type="submit" class="button-style mt-1 disabled:cursor-not-allowed disabled:opacity-50
                                    md:!px-12 w-full md:w-auto" id="contact-submit" x-bind:disabled="sendingForm"> Send <i class="fa-duotone fa-spinner-third fa-spin ml-2" x-show="sendingForm" aria-hidden="true" style="display: none;"></i>
    </button>
  </div>
</form>

Text Content

1099 ODDSTAD BOULEVARD, PACIFICA

Toggle navigation
 * Home
 * Gallery
 * Features
 * Neighborhood
 * Maps
 * Agent Info
 * Schedule
 * Contact

 * Home
 * Gallery
 * Features
 * Neighborhood
 * Maps
 * Agent Info
 * Schedule
 * Contact


1099 ODDSTAD BOULEVARD, PACIFICA, CA 994044


$799,000


ALL PROPERTY PHOTOS


View more


PROPERTY DETAILS

Bedrooms 2
Bathrooms 2
Square Feet 1,150 sq ft
Neighborhood Pacifica


OWN A PACIFICA GEM

Nestled in the tranquil Park Casitas community, this enchanting end-unit
townhouse offers a perfect blend of comfort and style with 2 bedrooms, 2
bathrooms, and a versatile loft, all within 1,150 square feet of meticulously
designed living space. Step inside to discover a welcoming ambiance, accentuated
with high vaulted ceilings, and picturesque views of green outdoor space. 

On the ground floor, you’ll find the first bedroom overlooking the beautifully
landscaped garden. The full bathroom is perfect for guests. The kitchen is a
culinary haven, featuring granite countertops, custom cabinets, and a convenient
in-unit washer and dryer. This space flows effortlessly into a grand,
open-concept dining and living area, where dramatic floor-to-ceiling windows
invite natural light to fill the room, creating an airy and uplifting
atmosphere.

Venture upstairs to the serene second bedroom, complete with a full bath and an
adjoining loft area that can be tailored to your lifestyle needs. Outside, the
private back patio provides a low-maintenance retreat for relaxation or
entertaining. The property also boasts a one-car garage, an additional carport,
and private storage, ensuring ample space for all your belongings.

Beyond your doorstep, the community offers beautifully landscaped common grounds
with a picnic area, perfect for leisurely afternoons. Enjoy the convenience of
nearby dining and shopping. Embrace the outdoors at Frontierland Park
playground, hiking trails at San Pedro Valley Park, or the pristine sands of
Pacifica State Beach. With easy access to the scenic HWY 1, this home not only
offers a serene lifestyle but also an ideal location for exploring the stunning
California coast.





NEIGHBORHOOD

Known for its beaches, hiking, and annual Pacific Coast Fog Festival, Pacifica
is a popular spot for surfers and outdoor enthusiasts, who are drawn to the
city's rugged coastline and rolling hills. The city of approximately 38,000 is
located north of Half Moon Bay along the coast and includes Linda Mar and
Rockaway beaches.

Pacifica got its name during a 1957 contest and is inspired by an 80-foot statue
built by sculptor Ralph Stackpole in the late 1930s. While the original statue
no longer exists, one sculptor’s working model stands on the front stairs of
Pacifica’s City Hall, while another occupies the City Hall's council chambers.

A skate park is available for skaters of all abilities, and citywide Wi-Fi
service is available for residents, visitors, and businesses. The Sanchez Adobe
history site dates back to prehistoric times and served as an Indian village,
cattle ranch, and mission farm -- among many other uses. It is the oldest
building in San Mateo County, according to Pacifica’s website.
Keep reading
Known for its beaches, hiking, and annual Pacific Coast Fog Festival, Pacifica
is a popular spot for surfers and outdoor enthusiasts, who are drawn to the
city's rugged coastline and rolling hills. The city of approximately 38,000 is
located north of Half Moon Bay along the coast and includes Linda Mar and
Rockaway beaches.

Pacifica got its name during a 1957 contest and is inspired by an 80-foot statue
built by sculptor Ralph Stackpole in the late 1930s. While the original statue
no longer exists, one sculptor’s working model stands on the front stairs of
Pacifica’s City Hall, while another occupies the City Hall's council chambers.

A skate park is available for skaters of all abilities, and citywide Wi-Fi
service is available for residents, visitors, and businesses. The Sanchez Adobe
history site dates back to prehistoric times and served as an Indian village,
cattle ranch, and mission farm -- among many other uses. It is the oldest
building in San Mateo County, according to Pacifica’s website.

View more


Melanie Leung

Sequoia Real Estate

Listing Agent

DRE: #01797490 Office: 415.680.8286

melanie@keyopp.net


SCHEDULE

Upcoming Events

Saturday

Aug 10

Open House Tours

2:00 PM - 4:00 PM

Sunday

Aug 11

Open House Tours

2:00 PM - 4:00 PM



Request an appointment


GET IN TOUCH

NAME
Name cannot be empty
EMAIL
Email cannot be empty Provide a valid email address
PHONE
Phone number cannot be empty
MESSAGE
Message cannot be empty

The site is protected by reCAPTCHA and the Google Privacy Policy and Terms of
Service apply.

Send


GET IN TOUCH

NAME
Name cannot be empty
EMAIL
Email cannot be empty Provide a valid email address
PHONE
Phone number cannot be empty
MESSAGE
Message cannot be empty

The site is protected by reCAPTCHA and the Google Privacy Policy and Terms of
Service apply.

Send


THANK YOU!

Your message has been received. We will reply using one of the contact methods
provided in your submission.


SORRY, THERE WAS A PROBLEM

Your message could not be sent. Please refresh the page and try again in a few
minutes, or reach out directly using the agent contact information below.

Melanie Leung

Sequoia Real Estate

Listing Agent

DRE: #01797490 Office: 415.680.8286

melanie@keyopp.net

Email Us Email Us Email Us
Home
Agent Login

Disclaimers

Floor Plans:. All square footage is approximate. Floor plans, dimensions and
square footage are for marketing purposes only.

Schools:. Interested parties should independently verify school district
availability. School attendance is not guaranteed.

Information Accuracy:. Open Homes has not investigated or verified the accuracy
of information on this website. Buyers are responsible for verifying all
information they deem important.

Contact Us
Privacy Policy
Terms of Use
Accessibility Policy
Enable High-Contrast Mode

Follow us:

Facebook
Instagram
Vimeo
Twitter

© 2024 Open Homes Photography
Made with in California

1 / 4

Known for its beaches, hiking, and annual Pacific Coast Fog Festival, Pacifica
is a popular spot for surfers and outdoor enthusiasts, who are drawn to the
city's rugged coastline and rolling hills. The city of approximately 38,000 is
located north of Half Moon Bay along the coast and includes Linda Mar and
Rockaway beaches.

Pacifica got its name during a 1957 contest and is inspired by an 80-foot statue
built by sculptor Ralph Stackpole in the late 1930s. While the original statue
no longer exists, one sculptor’s working model stands on the front stairs of
Pacifica’s City Hall, while another occupies the City Hall's council chambers.

A skate park is available for skaters of all abilities, and citywide Wi-Fi
service is available for residents, visitors, and businesses. The Sanchez Adobe
history site dates back to prehistoric times and served as an Indian village,
cattle ranch, and mission farm -- among many other uses. It is the oldest
building in San Mateo County, according to Pacifica’s website.
1 / 132