30margaret.com Open in urlscan Pro
15.197.234.174  Public Scan

URL: https://30margaret.com/
Submission: On December 29 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 text-bg-contrast">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 text-bg-contrast">Name cannot be empty</span>
      </div>
    </div>
    <div class="text-left">
      <label for="email" class="text-left mb-2 text-bg-contrast">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 text-bg-contrast">Email cannot be empty</span>
        <span x-show="!validForm.fields.email.valid &amp;&amp; validForm.fields.email.rule === 'email'" class="error-msg text-bg-contrast">Provide a valid email address</span>
      </div>
    </div>
    <div class="text-left">
      <label for="phone-number" class="text-left mb-2 text-bg-contrast">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 text-bg-contrast">Phone number cannot be empty</span>
      </div>
    </div>
  </div>
  <div class="flex flex-col">
    <div class="flex justify-between">
      <label for="message" class="text-bg-contrast">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 text-bg-contrast">Message cannot be empty</span>
    </div>
  </div>
  <div class="sm:flex sm:justify-center text-sm mt-2 text-bg-contrast 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 button-label 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 text-bg-contrast">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 text-bg-contrast" style="display: none;">Name cannot be empty</span>
      </div>
    </div>
    <div class="text-left">
      <label for="email" class="text-left mb-2 text-bg-contrast">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 text-bg-contrast" 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 text-bg-contrast" style="display: none;">Provide a valid email address</span>
      </div>
    </div>
    <div class="text-left">
      <label for="phone-number" class="text-left mb-2 text-bg-contrast">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 text-bg-contrast" 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" class="text-bg-contrast">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 text-bg-contrast" style="display: none;">Message cannot be empty</span>
    </div>
  </div>
  <div class="sm:flex sm:justify-center text-sm mt-2 text-bg-contrast 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 button-label 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

30 MARGARET AVENUE, SAN FRANCISCO

Toggle navigation
 * Home
 * Gallery
 * Features
 * Virtual Tour
 * Floor Plans
 * Neighborhood
 * Maps
 * Agent Info
 * Contact

 * Home
 * Gallery
 * Features
 * Virtual Tour
 * Floor Plans
 * Neighborhood
 * Maps
 * Agent Info
 * Contact


CHERYL BOWER PRESENTS


MIDCENTURY MODERN GEM!


ALL PROPERTY PHOTOS


View Photos




PROPERTY DETAILS

Bedrooms 3
Bathrooms 3
Square Feet 1,655 sq ft
Neighborhood Ingleside, San Francisco
Welcome to this midcentury modern gem! This home offers 3 bedrooms and 3
bathrooms, including an upstairs primary ensuite with custom sliding closet
doors & modern hall bath. The open living and dining area seamlessly connects to
a spacious kitchen, perfect for entertaining.

The rear sunrooms are versatile spaces ideal for a yoga studio or office. They
lead to a private, low-maintenance backyard-the perfect spot to unwind.
Downstairs, you'll find the third bathroom, an art space, three storage rooms
and a utility sink area. The spacious 2-car side-by-side garage has a car
charger and washer/dryer. 

Updates include a new roof, fresh interior/exterior paint, new furnace, electric
panel, siding replacement, new overhead garage doors & more!

Easy access to Whole Foods on Ocean Avenue, Stonestown, Ft. Funston, MUNI, BART,
highway 280 & SFO.

Experience a blend of classic charm and contemporary updates in a central
location!


Updates include:

New roof & exterior paint (2024)
Siding replacement rear and south side of house (2024)
Custom sliding closet doors primary bedroom (2024)
Siding replacement at front of house (2022)
New overhead garage doors (2022)
New furnace (2022)
New flooring in bedrooms and rear upper rooms (2022-2024)
Landscaping, hardscaping & new fence (2021)
Recessed lights living room, dining room and primary bedroom
Electric panel replacement 200 amp (2018)
New water heater 2018







3D VIRTUAL TOUR




FLOOR PLANS


FLOOR PLAN

Download


NEIGHBORHOOD

San Francisco’s Ingleside neighborhood offers homes for sale with amenities and
conveniences for commuters and their families. Its close proximity to the 280
freeway, the Bay Area Rapid Transit (BART) Balboa Park Station, 3 Muni rail
lines and several bus lines, makes getting just about anywhere around the Bay
Area easy and fast.

The commercial center of the neighborhood runs along Ocean Avenue, where locals
can find a range of shopping and dining. The nearby Stonestown Shopping Center
has dozens of large department and specialty stores, including Apple, Macy’s and
Nordstrom. The new Ingleside Public Library offers regular classes and events
for tots and teens. Both the City College of San Francisco Ocean Campus and San
Francisco State University are within walking distance.

On warm days, residents head for Lake Merced Park where they can fish, rent a
small boat or settle into one of the many picnic tables with a barbeque grill.
Nearby Balboa Park has a public swimming pool, children's playground, stadium,
baseball diamonds and tennis courts. For avid golfers, the private par 72 Lake
Merced Golf Club is famous for its steep elevation changes and lush, tree-lined
fairways.

Available homes for sale in Ingleside are perfect for families. Many have
garages, level backyards, gardens, hardwood floors and fireplaces. Hilltop real
estate provides lovely panoramic views of the bay or ocean.
Keep reading
San Francisco’s Ingleside neighborhood offers homes for sale with amenities and
conveniences for commuters and their families. Its close proximity to the 280
freeway, the Bay Area Rapid Transit (BART) Balboa Park Station, 3 Muni rail
lines and several bus lines, makes getting just about anywhere around the Bay
Area easy and fast.

The commercial center of the neighborhood runs along Ocean Avenue, where locals
can find a range of shopping and dining. The nearby Stonestown Shopping Center
has dozens of large department and specialty stores, including Apple, Macy’s and
Nordstrom. The new Ingleside Public Library offers regular classes and events
for tots and teens. Both the City College of San Francisco Ocean Campus and San
Francisco State University are within walking distance.

On warm days, residents head for Lake Merced Park where they can fish, rent a
small boat or settle into one of the many picnic tables with a barbeque grill.
Nearby Balboa Park has a public swimming pool, children's playground, stadium,
baseball diamonds and tennis courts. For avid golfers, the private par 72 Lake
Merced Golf Club is famous for its steep elevation changes and lush, tree-lined
fairways.

Available homes for sale in Ingleside are perfect for families. Many have
garages, level backyards, gardens, hardwood floors and fireplaces. Hilltop real
estate provides lovely panoramic views of the bay or ocean.

View more


Cheryl Bower

Compass

Realtor, CRS, GRI, ABR, ePro, SRES

DRE: #01505551 Mobile: 415.999.3450



cheryl@cbower.com



http://CherylBowerRealEstate.com

Helping Sellers & Buyers in San Francisco & San Mateo County




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.

Cheryl Bower

Compass

Realtor, CRS, GRI, ABR, ePro, SRES

DRE: #01505551 Mobile: 415.999.3450

cheryl@cbower.com

http://CherylBowerRealEstate.com
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 / 49

1 / 49

San Francisco’s Ingleside neighborhood offers homes for sale with amenities and
conveniences for commuters and their families. Its close proximity to the 280
freeway, the Bay Area Rapid Transit (BART) Balboa Park Station, 3 Muni rail
lines and several bus lines, makes getting just about anywhere around the Bay
Area easy and fast.

The commercial center of the neighborhood runs along Ocean Avenue, where locals
can find a range of shopping and dining. The nearby Stonestown Shopping Center
has dozens of large department and specialty stores, including Apple, Macy’s and
Nordstrom. The new Ingleside Public Library offers regular classes and events
for tots and teens. Both the City College of San Francisco Ocean Campus and San
Francisco State University are within walking distance.

On warm days, residents head for Lake Merced Park where they can fish, rent a
small boat or settle into one of the many picnic tables with a barbeque grill.
Nearby Balboa Park has a public swimming pool, children's playground, stadium,
baseball diamonds and tennis courts. For avid golfers, the private par 72 Lake
Merced Golf Club is famous for its steep elevation changes and lush, tree-lined
fairways.

Available homes for sale in Ingleside are perfect for families. Many have
garages, level backyards, gardens, hardwood floors and fireplaces. Hilltop real
estate provides lovely panoramic views of the bay or ocean.
1 / 78