Accessibility
· 13 checks — Landmarks, headings, alt text, forms, and link quality rolled into one auditable list.FLink & Button QualityAction12 issue(s) across 270 links and 60 buttonsFIX
| Element | Text | Issue | Suggested Fix |
|---|---|---|---|
| https://pagesix.com/hollywood-signup/ | Page Six Hollywood. Essential … | img no alt | Add alt attribute to the image |
| https://pagesix.com/shopping/ | Shop like an A-lister with the… | img no alt | Add alt attribute to the image |
| https://shop.nypost.com/collections/page… | Score merch as hot as our goss… | img no alt | Add alt attribute to the image |
| https://www.facebook.com/pagesix/ | new tab | Add '(opens in new tab)' to text | |
| https://x.com/pagesix | new tab | Add '(opens in new tab)' to text | |
| https://instagram.com/pagesix | new tab | Add '(opens in new tab)' to text | |
| https://email.pagesix.com/?c=vtkvriwgdhn… | new tab | Add '(opens in new tab)' to text | |
| https://www.youtube.com/pagesix/ | Youtube | new tab | Add '(opens in new tab)' to text |
| https://pagesix.com/podcasts/ | PageSix Podcast | new tab | Add '(opens in new tab)' to text |
| https://podcasts.apple.com/us/podcast/vi… | (empty) | empty | Add link text or aria-label |
| https://www.facebook.com/pagesix/ | new tab | Add '(opens in new tab)' to text | |
| https://x.com/pagesix/ | new tab | Add '(opens in new tab)' to text | |
| https://instagram.com/pagesix/ | new tab | Add '(opens in new tab)' to text | |
| https://email.pagesix.com/?c=9u3u4hfnkjb… | new tab | Add '(opens in new tab)' to text | |
| https://www.youtube.com/pagesix/ | YouTube | new tab | Add '(opens in new tab)' to text |
| https://www.tiktok.com/@pagesix/ | TikTok | new tab | Add '(opens in new tab)' to text |
| https://www.snapchat.com/p/dc7c6255-d499… | Snapchat | new tab | Add '(opens in new tab)' to text |
| https://advertising.nypost.com/ | Advertise/Media Kit | new tab | Add '(opens in new tab)' to text |
| https://pagesixadmanager.com/ | Self Service Advertising | new tab | Add '(opens in new tab)' to text |
| https://nypost.com/contact/ | Contact | new tab | Add '(opens in new tab)' to text |
| /cookie-notice/ | More information about your pr… | new tab | Add '(opens in new tab)' to text |
| /cookie-notice/ | More information about your pr… | new tab | Add '(opens in new tab)' to text |
| https://www.onetrust.com/products/cookie… | Powered by OneTrust Opens in a… | new tab | Add '(opens in new tab)' to text |
| <button> | (empty) | empty | Add button text or aria-label |
| <button> | (empty) | empty | Add button text or aria-label |
| <button> | (empty) | empty | Add button text or aria-label |
| <button> | (empty) | empty | Add button text or aria-label |
| <button> | (empty) | empty | Add button text or aria-label |
| <button> | (empty) | empty | Add button text or aria-label |
| <button> | (empty) | empty | Add button text or aria-label |
| <button> | (empty) | empty | Add button text or aria-label |
| <button> | (empty) | empty | Add button text or aria-label |
| <button> | (empty) | empty | Add button text or aria-label |
| <button> | (empty) | empty | Add button text or aria-label |
Links without text are announced as raw URLs by screen readers.
https://podcasts.apple.com/us/podcast/virtual-reali-tea-by-page-six/id1633690033
Links with no accessible text (empty <a></a>, image-only no alt, icon-only no aria-label) are unidentifiable to screen readers.
Source: WCAG 2.1 SC 2.4.4
Image-only links need alt text on the image (or aria-label on the link) so screen readers can announce them.
a[href="https://pagesix.com/hollywood-signup/"]; a[href="https://pagesix.com/shopping/"]; a[href="https://shop.nypost.com/collections/page-six?utm_source=p6HP&utm_medium=promo…"]
Image-only links with no alt are unidentifiable to screen-reader users — link's destination is invisible.
Source: WCAG 2.1 SC 2.4.4
Add '(opens in new tab)' to link text or aria-label.
https://www.facebook.com/pagesix/; https://x.com/pagesix; https://instagram.com/pagesix; https://email.pagesix.com/?c=vtkvriwgdhncu; https://www.youtube.com/pagesix/; https://pagesix.com/podcasts/; https://www.facebook.com/pagesix/; https://x.com/pagesix/; https://instagram.com/pagesix/; https://email.pagesix.com/?c=9u3u4hfnkjbfgu (+9 more)
Links with target="_blank" without rel="noopener" leak the originating page's window context — security and UX issue.
Learn more ▾ ▴
Without rel="noopener", the new tab can navigate the original tab via window.opener (tab-nabbing attack). Modern browsers default to noopener for target=_blank but only since recent versions. Always set rel="noopener noreferrer" explicitly.
Source: MDN target / OWASP
Icon-only buttons need an aria-label so screen readers can announce them.
button (#2035 on page); button (#2053 on page); button (#2268 on page); button (#2285 on page); button (#2302 on page); button (#2316 on page); button (#2330 on page); button (#2344 on page); button (#2357 on page); button (#2370 on page) (+1 more)
Buttons with no accessible text (icon-only, no aria-label) can't be activated by voice control or understood by screen readers.
Source: WCAG 2.1 SC 4.1.2
DDark Mode SupportActionNo dark mode signalsFIX
Detection limited to meta tags and inline styles.
DPrint StylesheetActionNo print stylesFIX
BLandmark Structure17 landmarksREVIEW
Multiple navigations need aria-label to distinguish them for screen readers.
Some <nav> elements lack aria-label — screen-reader users hear 'navigation' multiple times with no way to distinguish them.
Learn more ▾ ▴
When a page has multiple <nav> regions (primary, footer, breadcrumb), each needs aria-label or aria-labelledby. AT users navigate by landmark; identical 'navigation' announcements force them to enter each one to discover purpose.
Source: WAI-ARIA Authoring Practices
Add a skip link as the first focusable element so keyboard users can bypass repeated navigation.
Without a skip-nav link, keyboard users tab through every nav item before reaching content — every page, every visit.
Learn more ▾ ▴
WCAG 2.4.1 (Bypass Blocks) requires a mechanism to skip past repeated content. The standard implementation is a 'Skip to main content' link that's the first focusable element, visually hidden until focused. Three lines of HTML + four of CSS.
Source: WCAG 2.1 SC 2.4.1
BHeading Hierarchy135 headingsREVIEW
- H2 Page Six Hollywood. Essential reading for media insiders. SIGN UP FOR FREE.
- H2 Shop like an A-lister with these Celeb-approved products. SHOP NOW
- H2 Score merch as hot as our gossip. SEE MORE
- H3 Unexpected flex
- H2 Elizabeth Smart reveals she’s a bodybuilder with shocking photo
- H3 Mike Vrabel dodges multiple questions about Dianna Russini’s resignation, photo scandal in off-camera press conference exchange
- H3 Janel Parrish and ‘DWTS’ pro Sasha Farber fuel romance rumors with spicy ‘salsa lessons’ video
- H3 All of Anne Hathaway’s favorite skin care products, from serums, to selfie-worthy eye masks
- H2 Mike drop Mike Vrabel finally breaks silence on Dianna Russini photo scandal: I’ve had ‘difficult conversations’ with family
- H2 Jill Zarin being sued by pal over pickleball company
- H2 Mariah Carey has surprising reaction to Rock & Roll Hall of Fame snub
- H2 ‘Paranoid’ Vanessa Trump and Tiger Woods firing staff over fear of leaks as troubled golfer seeks treatment
- H3 Artist LeRone Wison gives Dave Chappelle $7,000 beeswax sculpture after bumping into him on the street
- H3 Lena Dunham celebrates new memoir, Azzi Fudd’s ‘electric’ party and more celebrity sightings
- H3 Martha Stewart’s ‘game-changer’ bag had a 5,000-person waiting list, but it’s finally back in stock
- H3 Page Six Hollywood
- H3 ‘Hotel hell’: San Diego Comic-Con’s new Ticketmaster-style reservations system has attendees asking, ‘What were they thinking?’
- H3 $80M film leak hits Paramount+ as explosive report reveals Hollywood is terrifyingly exposed to hackers
- H3 From pickle lemonade and glitter popcorn to bowling alleys — all the crazy concepts movie theaters are planning
- H2 Who is Patriots head coach Mike Vrabel’s wife? All about Jen Vrabel
- H2 ‘SLOMW’ star Layla Taylor recalls ‘weird’ experience that may have triggered her eating disorder
- H2 Meghan Markle promoting product with mention of her kids is an ‘outrageous use of titles’: Palace source
- H2 Family ties Dennis Quaid and Meg Ryan’s actor son Jack marries his ‘The Boys’ co-star in Australia
- H2 The stealth way Emily Blunt avoided paparazzi on the way to ‘The Devil Wears Prada 2’ carpet
- H2 B.J. Novak pulls back the curtain on ‘Devil Wears Prada 2’ character: He’s a ‘problem’
- H2 virtual reali-tea
- H2 Jason Wahler talks ‘Laguna Beach’ reunion and sobriety journey with VRT
- H2 ‘RHORI’ Recap: VRT breaks down Alicia, Rosie’s explosive argument & Kelsey’s relationship with Dino
- H2 ‘RHORI’ star Alicia Carmody breaks down Rosie Woods fight after explosive episode
- H2 Back in the spotlight ’80s star-turned-billionaire Atlanta Hawks owner makes rare appearance
- H3 Paris Hilton decks out daughter London, 2, and son Phoenix, 3, in Gucci logos
- H3 Donny Osmond pays tribute to ‘protector’ older brother Alan after death at 76
- H3 ‘I Dream of Jeannie’ star Barbara Eden mourns ‘sweet’ Patrick Muldoon after shocking death
- H2 Boss around Kylie Jenner sued by former housekeeper for alleged bullying and discrimination
- H2 Sarah Pidgeon took this glossy lip tint from the ‘Love Story’ set — and it’s on sale
- H2 ‘Devastated’ Denise Richards shares heartbreaking tribute to ex Patrick Muldoon: ‘Need you more than ever’
- H2 from the page six studio
- H2 Who is Matt Kaplan? Meet Alex Cooper’s husband
- H2 Victoria Beckham makes rare comment about ‘always protecting’ her kids in first TV interview since Brooklyn fallout
- H2 Fine line Harry Styles, Zoë Kravitz spark engagement rumors as she’s spotted with massive diamond ring
- H2 Society
- H3 ‘Queen of Hoops’ Jennifer Fisher’s Soho boutique burglarized by three men
- H3 Jazz legend Wynton Marsalis celebrated at Jazz at Lincoln Center gala, one year before he exits
- H3 Inside Page Six’s starry ’90s party at NYC hotspot Temple Bar with Hilaria Baldwin, Kyle Cooke and more
- H2 Fun in the sun Bikini-clad Cindy Crawford takes a dip with husband Rande Gerber during Mexico getaway
- H3 The best celebrity skin care brands our editors actually use and swear by
- H3 Alan Osmond and wife Suzanne Pinegar beam in sweet final photo before his death
- H3 Read Mike Vrabel’s full statement addressing Dianna Russini photos published by Page Six
- H2 'Devastated' Denise Richards ‘can’t stop crying’ following death of ex Patrick Muldoon: report
- H2 Amanda Batula, West Wilson’s apology status to Ciara Miller revealed after romance bombshell
- H2 Rihanna’s baby Rocki Irish lands her first magazine cover — in a haute couture diaper
- H2 Anna Wintour filmed a ‘gag’ scene for ‘The Devil Wears Prada 2′
- H2 Blair Underwood shares his six favorite books
- H2 Cut it out Why Sydney Sweeney’s ‘Devil Wears Prada 2’ cameo was abruptly cut from film
- H2 Photos
- H2 Groundbreaking fashion ‘The Devil Wears Prada 2’ NYC premiere red carpet: Anne Hathaway, Meryl Streep, Emily Blunt and more
- H3 Rob Gronkowski flaunts dance moves at Gronk Beach in Las Vegas and more star snaps
- H3 ‘Michael’ LA premiere red carpet: Laura Harrier, Colman Domingo, Nia Long and more
- H3 Gisele Bündchen soaks up the sun and more star snaps
- H2 The Royals
- H2 Fit for a queen Kate Middleton honors late queen on 100th birthday with meaningful jewelry
- H2 Kate Middleton, Prince William join King Charles in honoring Queen Elizabeth on what would have been 100th birthday
- H2 Meghan and Harry’s Bondi Beach visit upstaged by ‘unbothered queen’ in wild scene
- H2 Style
- H2 Emily Blunt’s ‘Devil Wears Prada 2’ premiere hairstyle was inspired by a ’90s icon
- H3 Anne Hathaway is radiant in sculptural red gown at ‘The Devil Wears Prada 2’ premiere
- H3 Madonna’s vintage outfit from surprise Sabrina Carpenter Coachella performance is missing
- H3 Selena Gomez’s sweet ruffled top is under $80 — and somehow still in stock
- H2 Sleep tight Stars and editors love this science-backed brand, and its overnight mask is a one-way ticket to luminous skin
- H2 Shopping
- H3 Star-worthy Mejuri jewelry is up to 25% off ahead of Mother’s Day
- H3 Anne Hathaway calls this anti-aging cream ‘brilliant,’ and it’s on sale
- H3 Bloomingdale’s big beauty event is back — here’s what I’m eyeing
- H3 Brooks Nader is ‘obsessed’ with this hydrating, glowy SPF spray
- H3 The best Mother’s Day gifts, inspired by celebrities
- H3 Nordstrom is having an under-the-radar beauty sale, and it’s packed with celebrity favorites
- H3 Last weekend to shop Sephora’s Savings Event — here’s what’s in our editors’ carts
- H3 Jennifer Lawrence wears these ultra-comfy adjustable jeans on repeat
- H2 Celebrity Parents
- H2 'Not a compliment' Jenna Bush Hager gets offended when people say she looks like dad George W. Bush
- H2 Mindy Kaling’s daughter’s sweet nickname for godfather B.J. Novak revealed
- H2 How Meghan Markle’s new candle line gives sweet nod to kids Prince Achie and Princess Lilibet
- H2 Videos
- H3 Everything to know about the feud between Alix Earle and Alex Cooper
- H3 Werk Room Weekly: DD Fuego reveals what was cut from the ‘RuPaul’s Drag Race’ Season 18 finale
- H3 Coachella weekend 2 best moments, Madonna’s new single, and latest on Alix Earle & Alex Cooper feud
- H3 ‘RHOA’ recap: Unpacking Porsha Williams and K. Michelle’s sit down
- H3 Like Gossip?
- H3 Sign Up
- H4 Trending Now On PageSix.com
- H3 New England Patriots’ Mike Vrabel and top NY Times NFL reporter hold hands and hug at luxury hotel
- H3 Mike Vrabel finally breaks silence on Dianna Russini photo scandal: I've had 'difficult conversations' with family
- H3 Who is Patriots head coach Mike Vrabel's wife? All about Jen Vrabel
- H3 Meghan Markle promoting product with mention of her kids is an ‘outrageous use of titles’: Palace source
- H4 Popular Shopping
- H5 All of Anne Hathaway’s favorite skin care products, from serums, to selfie-worthy eye masks
- H5 Martha Stewart’s ‘game-changer’ bag had a 5,000-person waiting list, but it’s finally back in stock
- H5 Emily Blunt’s ‘Devil Wears Prada 2’ premiere hairstyle was inspired by a ‘90s icon
- H5 Sarah Pidgeon took this glossy lip tint from the ‘Love Story’ set — and it’s on sale
- H5 The best celebrity skin care brands our editors actually use and swear by
- H4 Listen Now
- H2 Now on Decider
- H3 Kelly Ripa Assures Jason Ritter That Him Tripping During His ‘Live’ Entrance Was “Just Adorable”: “That Was So Great, The Way You Welcomed Everyone and Tripped Over Gelman’s Chair”
- H2 We Care About Your Privacy
- H3 We and our partners process data to provide:
- H2 About Your Privacy
- H3 Manage Consent Preferences
- H4 Store and/or access information on a device 32 partners can use this purpose
- H4 Personalised advertising and content, advertising and content measurement, audience research and services development 35 partners can use this purpose
- H5 Targeting Cookies
- H5 Do Not Sell or Share My Personal Information for NYP Internet and Mobile Users
- H5 NYP - Unknown
- H5 NYP - Analytics Cookies and Similar Technologies
- H5 Social Media Cookies
- H5 Performance Cookies
- H5 Use limited data to select advertising 32 partners can use this purpose
- H5 Create profiles for personalised advertising 27 partners can use this purpose
- H5 Use profiles to select personalised advertising 29 partners can use this purpose
- H5 Create profiles to personalise content 5 partners can use this purpose
- H5 Use profiles to select personalised content 5 partners can use this purpose
- H5 Measure advertising performance 30 partners can use this purpose
- H5 Measure content performance 9 partners can use this purpose
- H5 Understand audiences through statistics or combinations of data from different sources 18 partners can use this purpose
- H5 Develop and improve services 27 partners can use this purpose
- H5 Use limited data to select content 4 partners can use this purpose
- H4 Use precise geolocation data 10 partners can use this special feature
- H4 Actively scan device characteristics for identification 5 partners can use this special feature
- H4 Ensure security, prevent and detect fraud, and fix errors 31 partners can use this special purpose
- H4 Deliver and present advertising and content 31 partners can use this special purpose
- H4 Save and communicate privacy choices 20 partners can use this special purpose
- H4 Match and combine data from other data sources 22 partners can use this feature
- H4 Link different devices 24 partners can use this feature
- H4 Identify devices based on information transmitted automatically 23 partners can use this feature
- H4 Strictly Necessary Cookies
- H3 Cookie List
Every page should have one H1 that describes the page content.
No H1 means screen-reader users can't identify the page's primary topic, and Google's content-extraction degrades.
Learn more ▾ ▴
The H1 is the document title for assistive tech and a strong signal to search engines about page topic. Pages without one force screen readers to fall back to the <title> attribute or page chrome. Add a single H1 that names the page's primary subject.
Source: WCAG 2.4.6 / Google Search Central
BAlt Text Quality2 of 91 images have issuesREVIEW
| Issue | Count |
|---|---|
| missing | 2 image(s) |
| too long | 5 image(s) |
Images without alt text are invisible to screen readers.
Each image without alt text is a WCAG 1.1.1 failure — invisible to screen-reader users, lost from Google Image Search.
Learn more ▾ ▴
WCAG 2.1 Level A requires text alternatives for non-decorative images. Empty alt='' is fine for decorative; meaningful images need descriptive text. Common fixes: CMS audit + bulk add, build-time linter (alt-text-required ESLint rule), CI gate on Lighthouse a11y score.
Source: WCAG 2.1 SC 1.1.1 / WebAIM Million Report
C404 Error PageActionHTTP 404, custom pageREVIEW
CFavicon & BrandingAction9 icon(s) detectedREVIEW
CWeb ManifestActionValid manifestREVIEW
CColor Contrast (Screenshot)Action20 text elements analyzed, 2 fail WCAG AAREVIEW
Analyzes text contrast against the actual rendered page, including background images, gradients, and overlays that CSS-based tools cannot detect.
1 contrast failures on background images/gradients
These failures are invisible to CSS-based accessibility tools like Lighthouse. The text may be fine on a solid background, but fails when rendered over an image or gradient.
Show all checked elements (20)
| Element | Ratio | Required | FG | BG | Result |
|---|---|---|---|---|---|
| h2 We Care About Your P… | 21.00:1 | 3.0:1 | #000000 | #FFFFFF | Pass |
| h2 About Your Privacy | 21.00:1 | 3.0:1 | #000000 | #FFFFFF | Pass |
| h3 Werk Room Weekly: DD… | 21.00:1 | 3.0:1 | #000000 | #FFFFFF | Pass |
| h3 Coachella weekend 2 … | 21.00:1 | 3.0:1 | #000000 | #FFFFFF | Pass |
| h3 ‘RHOA’ recap: Un… | 21.00:1 | 3.0:1 | #000000 | #FFFFFF | Pass |
| h3 Like Gossip? | 21.00:1 | 3.0:1 | #000000 | #FFFFFF | Pass |
| h3 We and our partners … | 21.00:1 | 3.0:1 | #000000 | #FFFFFF | Pass |
| h3 Manage Consent Prefe… | 21.00:1 | 3.0:1 | #000000 | #FFFFFF | Pass |
| h3 Cookie List | 21.00:1 | 3.0:1 | #000000 | #FFFFFF | Pass |
| title Page Six: Latest Cel… | 1.00:1 | 4.5:1 | #000000 | #000000 | Fail |
| span Primary Menu | 1.66:1 | 4.5:1 | #000000 | #333333 | Fail |
| span Sections | 5.24:1 | 4.5:1 | #000000 | #7F7F7F | Pass |
| a News | 5.24:1 | 4.5:1 | #000000 | #7F7F7F | Pass |
| a Entertainment | 5.24:1 | 4.5:1 | #000000 | #7F7F7F | Pass |
| a Page Six Hollywood | 5.24:1 | 4.5:1 | #000000 | #7F7F7F | Pass |
| a Page Swift | 5.24:1 | 4.5:1 | #000000 | #7F7F7F | Pass |
| a Virtual Reali-Tea | 5.24:1 | 4.5:1 | #000000 | #7F7F7F | Pass |
| a Movies | 5.24:1 | 4.5:1 | #000000 | #7F7F7F | Pass |
| a Music | 5.24:1 | 4.5:1 | #000000 | #7F7F7F | Pass |
| a Awards | 5.24:1 | 4.5:1 | #000000 | #7F7F7F | Pass |
Methodology: The top 20 text elements by font size were checked. Background color was sampled from the desktop screenshot using a 5-point pattern. WCAG 2.1 AA requires 4.5:1 for normal text and 3:1 for large text.
BLighthouse Accessibility AuditsScore 82/100 — 5 failing, 24 passedREVIEW
Accessibility
These checks highlight opportunities to improve the accessibility of your web app. Automatic detection can only detect a subset of issues and does not guarantee the accessibility of your web app, so manual testing is also encouraged.
ARIA
Focusable descendents within an `[aria-hidden="true"]` element prevent those interactive elements from being available to users of assistive technologies like screen readers. Learn how `aria-hidden` affects focusable elements.
Informational: a Permissions-Policy directive showing feature -> allowed origins.
Source: MDN Permissions-Policy
| Failing Elements |
|---|
Advertisement div#content > main#main > div.ad-slot > div#div-gpt-ad-bottom |
Advertisement div.ad__wrapper > div.ad__placeholder > div.ad__slot > div#div-gpt-ad-rec_atf |
Advertisement div.ad__wrapper > div.ad__placeholder > div.ad__slot > div#div-gpt-ad-rec_hp_atf |
These are opportunities to improve the usage of ARIA in your application which may enhance the experience for users of assistive technology, like a screen reader.
Contrast
Low-contrast text is difficult or impossible for many users to read. Learn how to provide sufficient color contrast.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
div.story > div.story__text > p.story__excerpt > a.t-color-pagesix-red div.story > div.story__text > p.story__excerpt > a.t-color-pagesix-red |
These are opportunities to improve the legibility of your content.
Names and labels
Screen reader users rely on frame titles to describe the contents of frames. Learn more about frame titles.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
div.widget_text > div.textwidget > div > iframe#wpcom-iframe-bc0339f69ff8d2927a480dcd7475fbbf div.widget_text > div.textwidget > div > iframe#wpcom-iframe-bc0339f69ff8d2927a480dcd7475fbbf |
Link text (and alternate text for images, when used as links) that is discernible, unique, and focusable improves the navigation experience for screen reader users. Learn how to make links accessible.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
div.textwidget > div > p > a div.textwidget > div > p > a |
These are opportunities to improve the semantics of the controls in your application. This may enhance the experience for users of assistive technology, like a screen reader.
Best practices
Touch targets with sufficient size and spacing help users who may have difficulty targeting small controls to activate the targets. Learn more about touch targets.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
Your California Privacy Rights footer#colophon > div.site-footer__wrapper > nav.footer-legal > a.ca-privacy |
Do Not Sell My Personal Information footer#colophon > div.site-footer__wrapper > nav.footer-legal > button#ot-sdk-btn |
These items highlight common accessibility best practices.
AForm Accessibility1 of 26 controls have issuesPASS
| Control | Type | Label | Method |
|---|---|---|---|
| #ot-group-id-IAB2V2_1 | checkbox | Store and/or access information on a device | for/id |
| #ot-group-id-V2STACK42 | checkbox | Personalised advertising and content, advertising and content measurement, audience research and services development | for/id |
| #ot-sub-group-id-C0004 | checkbox | Targeting Cookies | aria-label |
| #ot-sub-group-id-C0017 | checkbox | Do Not Sell or Share My Personal Information for NYP Internet and Mobile Users | aria-label |
| #ot-sub-group-id-C0030 | checkbox | NYP - Unknown | aria-label |
| #ot-sub-group-id-C0024 | checkbox | NYP - Analytics Cookies and Similar Technologies | aria-label |
| #ot-sub-group-id-C0005 | checkbox | Social Media Cookies | aria-label |
| #ot-sub-group-id-C0002 | checkbox | Performance Cookies | aria-label |
| #ot-sub-group-id-IAB2V2_2 | checkbox | Use limited data to select advertising | aria-label |
| #ot-sub-group-id-IAB2V2_3 | checkbox | Create profiles for personalised advertising | aria-label |
| #ot-sub-group-id-IAB2V2_4 | checkbox | Use profiles to select personalised advertising | aria-label |
| #ot-sub-group-id-IAB2V2_5 | checkbox | Create profiles to personalise content | aria-label |
| #ot-sub-group-id-IAB2V2_6 | checkbox | Use profiles to select personalised content | aria-label |
| #ot-sub-group-id-IAB2V2_7 | checkbox | Measure advertising performance | aria-label |
| #ot-sub-group-id-IAB2V2_8 | checkbox | Measure content performance | aria-label |
| #ot-sub-group-id-IAB2V2_9 | checkbox | Understand audiences through statistics or combinations of data from different sources | aria-label |
| #ot-sub-group-id-IAB2V2_10 | checkbox | Develop and improve services | aria-label |
| #ot-sub-group-id-IAB2V2_11 | checkbox | Use limited data to select content | aria-label |
| #ot-group-id-ISF2V2_1 | checkbox | Use precise geolocation data | for/id |
| #ot-group-id-ISF2V2_2 | checkbox | Actively scan device characteristics for identification | for/id |
| #vendor-search-handler | text | Cookie list search | aria-label |
| #chkbox-id | checkbox | checkbox label | for/id |
| #select-all-hosts-groups-handler | checkbox | checkbox label | for/id |
| #select-all-vendor-groups-handler | checkbox | checkbox label | for/id |
| #select-all-vendor-leg-handler | checkbox | checkbox label | for/id |
| textarea | textarea | (none) | none |
Form controls need a <label>, aria-label, or aria-labelledby for screen readers.
<textarea>
Form controls without labels — assistive tech announces 'edit text' with no context; users can't complete forms.
Source: WCAG 2.1 SC 3.3.2