shopurquidlinen.com Open in urlscan Pro
172.67.147.52  Public Scan

Submitted URL: http://shopurquidlinen.com/
Effective URL: https://shopurquidlinen.com/
Submission Tags: @phish_report
Submission: On September 25 via api from FI — Scanned from FI

Form analysis 6 forms found in the DOM

POST /localization

<form method="post" action="/localization" id="annbar-localization" accept-charset="UTF-8" class="form localization no-js-hidden" enctype="multipart/form-data"><input type="hidden" name="form_type" value="localization"><input type="hidden"
    name="utf8" value="✓"><input type="hidden" name="_method" value="put"><input type="hidden" name="return_to" value="/">
  <div class="localization__grid"></div>
  <script>
    document.getElementById('annbar-localization').addEventListener('change', (evt) => {
      const input = evt.target.previousElementSibling;
      if (input && input.tagName === 'INPUT') {
        input.value = evt.detail.selectedValue;
        evt.currentTarget.submit();
      }
    });
  </script>
</form>

GET /search

<form class="main-search__form" action="/search" method="get" autocomplete="off">
  <div class="main-search__input-container">
    <input class="main-search__input boost-sd__search-widget-init-input" type="text" name="q" autocomplete="off" placeholder="Search" aria-label="When autocomplete results are available use up and down arrows to review and enter to select"
      id="boost-sd__search-widget-init-input-0" data-search-box="boost-sd__search-widget-init-input-0" role="combobox" aria-expanded="false" aria-autocomplete="list" aria-owns="boost-sd__search-widget-init-wrapper-0" maxlength="150" value="">
    <button class="main-search__button" type="submit" aria-label="Search"><svg class="icon" width="24" height="24" viewBox="0 0 24 24" aria-hidden="true" focusable="false" role="presentation">
        <g transform="translate(3 3)" stroke="currentColor" stroke-width="1.5" fill="none" fill-rule="evenodd">
          <circle cx="7.824" cy="7.824" r="7.824"></circle>
          <path stroke-linecap="square" d="m13.971 13.971 4.47 4.47"></path>
        </g>
      </svg></button>
  </div>
  <script src="//www.shopurquidlinen.com/cdn/shop/t/254/assets/search-suggestions.js?v=136224079820713396391724109653" defer=""></script>
  <search-suggestions></search-suggestions>
</form>

POST /localization

<form method="post" action="/localization" id="annbar-localizationMobileNav" accept-charset="UTF-8" class="form localization no-js-hidden" enctype="multipart/form-data"><input type="hidden" name="form_type" value="localization"><input type="hidden"
    name="utf8" value="✓"><input type="hidden" name="_method" value="put"><input type="hidden" name="return_to" value="/">
  <div class="localization__grid"></div>
  <script>
    document.getElementById('annbar-localization').addEventListener('change', (evt) => {
      const input = evt.target.previousElementSibling;
      if (input && input.tagName === 'INPUT') {
        input.value = evt.detail.selectedValue;
        evt.currentTarget.submit();
      }
    });
  </script>
</form>

POST /contact#contact_form

<form method="post" action="/contact#contact_form" id="contact_form" accept-charset="UTF-8" class="contact-form"><input type="hidden" name="form_type" value="customer"><input type="hidden" name="utf8" value="✓">
  <input type="hidden" name="contact[tags]" value="prospect,newsletter">
  <p>
    <input type="email" placeholder="Your email" class="signup-form__email" value="" name="contact[email]" aria-label="Email" required="">
  </p>
  <button class="btn btn--primary signup-form__button" type="submit">Subscribe</button>
</form>

POST /localization

<form method="post" action="/localization" id="footer-localization" accept-charset="UTF-8" class="form localization no-js-hidden" enctype="multipart/form-data"><input type="hidden" name="form_type" value="localization"><input type="hidden"
    name="utf8" value="✓"><input type="hidden" name="_method" value="put"><input type="hidden" name="return_to" value="/">
  <div class="localization__grid">
    <div class="localization__selector">
      <input type="hidden" name="country_code" value="US">
      <country-selector><label class="label visually-hidden no-js-hidden" for="footer-localization-country-button">Country/Region</label>
        <div class="custom-select relative w-full no-js-hidden"><button class="custom-select__btn input items-center" type="button" aria-expanded="false" aria-haspopup="listbox" id="footer-localization-country-button">
            <span class="text-start">United States (USD&nbsp;$)</span>
            <svg width="20" height="20" viewBox="0 0 24 24" class="icon" role="presentation" focusable="false" aria-hidden="true">
              <path d="M20 8.5 12.5 16 5 8.5" stroke="currentColor" stroke-width="1.5" fill="none"></path>
            </svg>
          </button>
          <ul class="custom-select__listbox absolute invisible" role="listbox" tabindex="-1" aria-hidden="true" hidden="" aria-activedescendant="footer-localization-country-opt-0">
            <li class="custom-select__option flex items-center js-option" id="footer-localization-country-opt-0" role="option" data-value="US" aria-selected="true">
              <span class="pointer-events-none">United States (USD&nbsp;$)</span>
            </li>
          </ul>
        </div>
      </country-selector>
    </div>
  </div>
  <script>
    customElements.whenDefined('custom-select').then(() => {
      if (!customElements.get('country-selector')) {
        class CountrySelector extends customElements.get('custom-select') {
          constructor() {
            super();
            this.loaded = false;
          }
          async showListbox() {
            if (this.loaded) {
              super.showListbox();
              return;
            }
            this.button.classList.add('is-loading');
            this.button.setAttribute('aria-disabled', 'true');
            try {
              const response = await fetch('?section_id=country-selector');
              if (!response.ok) throw new Error(response.status);
              const tmpl = document.createElement('template');
              tmpl.innerHTML = await response.text();
              const el = tmpl.content.querySelector('.custom-select__listbox');
              this.listbox.innerHTML = el.innerHTML;
              this.options = this.querySelectorAll('.custom-select__option');
              this.loaded = true;
            } catch {
              this.listbox.innerHTML = '<li>Error fetching countries, please try again.</li>';
            } finally {
              super.showListbox();
              this.button.classList.remove('is-loading');
              this.button.setAttribute('aria-disabled', 'false');
            }
          }
          setButtonWidth() {
            return;
          }
        }
        customElements.define('country-selector', CountrySelector);
      }
    });
  </script>
  <script>
    document.getElementById('footer-localization').addEventListener('change', (evt) => {
      const input = evt.target.previousElementSibling;
      if (input && input.tagName === 'INPUT') {
        input.value = evt.detail.selectedValue;
        evt.currentTarget.submit();
      }
    });
  </script>
</form>

/search

<form action="/search" class="boost-sd__search-bar"><button role="textbox" type="button" aria-label="Close" class=" boost-sd__button-text-x boost-sd__button-text-x--close-style1">Close</button><input id="boost-sd__search-bar-input"
    class="boost-sd__search-bar-input " autocomplete="off" placeholder="Search" name="q" data-search-box="boost-sd__search-bar-input" role="combobox" aria-expanded="false" aria-autocomplete="list" aria-owns="boost-sd__search-bar-autocomplete-wrapper"
    aria-label="When autocomplete results are available use up and down arrows to review and enter to select" maxlength="150" value=""></form>

Text Content

Back
Accessibility options


Are you sure you want to hide the widget forever? If you need it back, please
clear your cookies.

OkCancel
Content
Bigger Text


Bigger Text


Bigger Cursor


Bigger Cursor

Line Height


Line Height


Hide Images


Hide images

Readable Fonts


Readable fonts

Dyslexic Font


Dyslexic Font

Stop Animations


Stop Animations

Colors
Invert Color


Invert Colors

Brightness


Brightness


Contrast


Contrast


Grayscale Color


Grayscale

Saturation


Saturation


Navigation
Reading Line


Reading Line

Highlight Links


Highlight Links

Text Reader


Read page

Reading Mask


Reading Mask

Page Structure


Page Structure

LanguageEnglish (United States)
Search language
English (United States)English
(British)SwedishFinnishGermanSpanishPortugueseTurkishFrenchJapaneseKoreanHebrewLatvianPolishGreekThai
Accessibly App Accessibility Statement

Accessibly App is committed to making sites accessible for all, including people
with disabilities. We are continuously improving the service we provide through
our app to comply with increased accessibility standards, guidelines, and to
make the browsing experience better for everyone.

Conformance status

The app uses the Web Content Accessibility Guidelines (WCAG) defined
requirements to improve accessibility for people with disabilities. It defines
three levels of conformance: Level A, Level AA, and Level AAA. Accessibly App is
following the best guidelines and is partially conformant with WCAG 2.1 level
AA.

Technical information

Accessibly App is an app supported in Shopify and Wordpress environments. The
app relies on the following technologies:

HTML
CSS
JavaScript
NodeJs
MongoDB

Accessibly App features

When a site has Accessibly App i ac-h4 installed, the website can be adjusted
with keyboard navigation using the “tab” key (WCAG 2.1/2.1.1). Additionally, see
the list of all provided Accessibly App features and tools for better website
experience:

Zoom | WCAG 2.1 / 1.4.4

This feature enables users to enhance the size of the text to up to three times
the original text for better text readability.

Bigger cursor

Makes the cursor bigger and more prominent. Increases the size for better site
browsing.

Invert colors

Invert the colors of the website content. For those with decreased vision, the
high contrast greatly helps to read the site better.

Tweak Contrast | WCAG 2.1 / 1.4.6

This feature lets users manually select from two options: to enhance the
contrast of the website or to decrease the contrast.

Tweak Brightness | WCAG 2.1 / 1.4.6

This feature lets users update the brightness on the site. The content can
either be made brighter or darker.

Grayscale | WCAG 2.1 / 1.4.6

Users can turn on grayscale, making the website content appear only in shades of
gray. This benefits people with visual impairment.

Reading Line

Add a supportive reading line to the site.

Readable fonts

Convert the fonts available on-site to one of the most easily readable fonts:
Helvetica.

Alt Text and Images

Ability to read alt text of images. As of now, our tool has added a feature
where alt descriptions for images without them are generated using Google's
Vision AI. In the event that you haven't manually written these image
descriptions yourself, this greatly helps people with visual impairment browse
your site.

Tooltips | WCAG 2.1 / 2.5.3

Add labels to images that contain a written description of the image.

Highlight links

Highlight links to make them more prominent.

Hide images

Hide images on the site. This provides better site readability for people with
visual impairment.

Read page

A feature that allows a voice to read the text on your site out loud to
visitors.

Notes & Feedback

We always try to update our services and operate in the best possible manner to
benefit all of our clients and their site visitors.

We cannot control or correct problems with third-party sites, but please let us
know if you encounter difficulty with any sites we link to so we can pass the
information along to the site owners. You may also want to address your concerns
directly to these third parties.


Reset settings
Accessibility statement


Skip to content
 * Facebook
 * YouTube
 * Instagram
 * TikTok
 * Pinterest

Up to 50% OFF Closeout/Clearance Inventory - Hurry, Only While Supplies Last!
Free Shipping on Qualifying Orders Over $249 - Contiguous USA Only - See Terms &
Conditions.


Search




Account Search Cart

 * Products All
 * Table Linens
    * Tablecloths & Overlays
    * Table Runners
    * Table Napkins
    * Fitted Conference Tablecloths
    * Table / Stage Skirts
    * Closeout / Clearance

 * Pipe & Drape
    * Adjustable Uprights
    * Crossbars (Drape Support)
    * Base & Pin
    * Backdrop Kits
    * Canopy / Mandap Kits
    * Pipe & Drape Accessories
    * Storage Bags & Carts
    * Pipe, Base, and Truss Covers
    * VIEW ALL

 * Dinnerware
    * Glass Charger Plates
    * Porcelain Dinnerware Sets
    * Print Dinnerware Sets
    * Flatware / Cutlery
    * Storage Racks

 * Drapes / Curtains
    * All Drapery Panels
    * IFR Drapery Panels
    * Austrian Puff Drapery Panels

 * Fabric By The Yard
 * Chair Covers
    * Spandex Chair Covers
    * Fitted Chair Covers
    * Chair Backs & Caps
    * Chair Pad Covers
    * Chair Sashes
    * Organza Bow & Bands

 * Spandex Products
    * All Spandex Products
    * Spandex Chair Covers
    * Spandex Cocktail Covers
    * Spandex Table Covers
    * Trash Can Covers

 * Table / Stage Skirts
    * Table Skirts
    * Stage Skirts
    * Fitted Conference Table Covers

 * 3D Flower Walls
 * Clearance / Closeout
 * Need Help?
    * FAQs
    * Our Location
    * About Us
    * Return Policy
    * Linen Size Guide
    * Shipping Information
    * Sales Tax Exemption

 * Products All
 * Table Linens
    * Tablecloths & Overlays
    * Table Runners
    * Table Napkins
    * Fitted Conference Tablecloths
    * Table / Stage Skirts
    * Closeout / Clearance

 * Pipe & Drape
    * Adjustable Uprights
    * Crossbars (Drape Support)
    * Base & Pin
    * Backdrop Kits
    * Canopy / Mandap Kits
    * Pipe & Drape Accessories
    * Storage Bags & Carts
    * Pipe, Base, and Truss Covers
    * VIEW ALL

 * Dinnerware
    * Glass Charger Plates
    * Porcelain Dinnerware Sets
    * Print Dinnerware Sets
    * Flatware / Cutlery
    * Storage Racks

 * Drapes / Curtains
    * All Drapery Panels
    * IFR Drapery Panels
    * Austrian Puff Drapery Panels

 * Fabric By The Yard
 * Chair Covers
    * Spandex Chair Covers
    * Fitted Chair Covers
    * Chair Backs & Caps
    * Chair Pad Covers
    * Chair Sashes
    * Organza Bow & Bands

 * Spandex Products
    * All Spandex Products
    * Spandex Chair Covers
    * Spandex Cocktail Covers
    * Spandex Table Covers
    * Trash Can Covers

 * Table / Stage Skirts
    * Table Skirts
    * Stage Skirts
    * Fitted Conference Table Covers

 * 3D Flower Walls
 * Clearance / Closeout
 * Need Help?
    * FAQs
    * Our Location
    * About Us
    * Return Policy
    * Linen Size Guide
    * Shipping Information
    * Sales Tax Exemption

 * Facebook
 * YouTube
 * Instagram
 * TikTok
 * Pinterest


FREE SHIPPING ON ORDERS OVER $249*

Contiguous USA Only - Exclusions Apply


FREE STORE PICKUP (LOS ANGELES, CA)

Ready within 2-4 Business Days



CLEARANCE / CLOSEOUT - UP TO 50% OFF

Limited Time Offer - Only While Supplies Last!

Free shipping on orders over $249
Load slide 1 of 5 Load slide 2 of 5 Load slide 3 of 5 Load slide 4 of 5 Load
slide 5 of 5
Previous Next



PREVIOUS FEATURED LINEN COLLECTION NEXT

New arrival
Quick buy
Artistry Bloom Table Linen in Taupe / Black
From $ 26.60
New arrival
Quick buy
Morocco (Poly Print) Table Linen in Royal
From $ 21.00
New arrival
Quick buy
Cabana Stripe Table Linen in Taupe / White
From $ 26.60

Quick buy
Tropical Print (Dupioni) Table Linen in Green
From $ 25.20

Quick buy
Plaid (Poly Print) Table Linen in Red and Green
From $ 21.00

Quick buy
Element Jacquard Table Linen in Grey and Gold
From $ 68.60

Quick buy
Lush Velvet Table Linen in Rust
From $ 14.00



SHOP BY COLOR

BROWSE PRODUCTS IN THOUSANDS OF COMBINATIONS OF FABRICS, COLORS, AND SIZES.


TABLECLOTHS
& OVERLAYS


PIPE & DRAPE
HARDWARE


DINNERWARE & FLATWARE


DRAPERY PANELS





SPANDEX
COVERS


3D FLOWER
WALLS


FEATURED PRODUCTS

Tablecloths & Overlays

Table Runners

Table Napkins

Hospitality / Catering

Fabric By The Yard

Drapery Panels

All Pipe & Drape Hardware

Sectional Kits / Backdrops

Canopy / Mandap Kits

Accessories & Storage

Tradeshow Supplies

3D Flower Walls

Ceiling Drapery Panels

Austrian Puff Panels

Glass Charger Plates

Print Dinnerware Sets

Porcelain Dinnerware Sets

Flatware / Cutlery Sets

Plate Storage

Spandex High & Low Boys

Spandex Table Covers

Specialty Spandex

Velvet & Print Spandex

Spandex Chair Covers

Fitted Chair Covers

Chair Pad Covers

Chair Sashes

Tutu Skirt Chair Backs

Chair Backs & Caps

Table Skirts

Stage Skirts

Trash Can Covers

Clearance / Closeout

EQUIPMENT FINANCING


LOW MONTHLY PAYMENTS


SOFT CREDIT CHECK. QUICK APPLICATION.

CLICK TO APPLY
Min. purchase of $1000 - Qualified customers only


SHOP WITH CONFIDENCE


Play

Location

739 E 60th St Los Angeles, CA 90001



Showroom Hours

Monday - Friday from 10AM to 4PM

By Appointment Only. Call 800-590-9508

Directions



BLOG POSTS


EVERYTHING YOU NEED TO KNOW BEFORE USING SPANDEX TABLE COVERS AND SPANDEX CHAIR
COVERS

Spandex table covers and spandex chair covers are an event planner’s best friend
– they help keep things clean, sleek, and colorful.



5 COLORFUL TABLE RUNNERS TO DRESS UP YOUR TABLE

If you want to bring something new and interesting to your table, consider
bringing a colorful table runner into the mix.



AFFORDABLE POLYESTER TABLECLOTHS IN BULK: BUYING GUIDE

If you need lots of table linens for your next event but don’t necessarily have
a massive budget, wholesale polyester tablecloths are the answer.


Urquid Linen

739 E 60th St. Los Angeles CA 90001

Phone: (800 590-9508 

Local: (310) 909-8785

Fax: (323) 231-9012





 

All images are digital representations for illustration purposes. Color and/or
texture may vary from actual fabric.
Our fabric may occasionally vary by dye lot. Products online are subject to
availability. Please read Terms & Conditions for more information.

 * Facebook
 * YouTube
 * Instagram
 * TikTok
 * Pinterest

Quick links
 * FAQ
 * About Us
 * Our Location
 * Orders & Return Policy
 * Terms Of Use
 * Privacy Policy
 * Shipping Information
 * Learn About Seams
 * Linen Size Guide
 * Care Instructions
 * Urquid Blog
 * Sitemap
 * Sales Tax / Exemptions
 * CCPA Compliance
 * Join Our Affiliate Program
 * Do not sell or share my personal information

Newsletter

Sign up for exclusive offers, original stories, events and more.



Subscribe
Amazon American Express Apple Pay Diners Club Discover Meta Pay Google Pay
Mastercard PayPal Shop Pay Venmo Visa
Country/Region
United States (USD $)
 * United States (USD $)

© 2024 Urquid Linen.


Added to your Cart



{"themeColor":"#574cd5","iconColor":"#574cd5","showLogo":true,"topBottomPosition":10,"rightLeftPosition":10,"iconSize":"small","iconCustomSize":64,"position":"middle-right"}







Order is not valid

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



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

OK

Close