Accessibility
· 13 checks — Landmarks, headings, alt text, forms, and link quality rolled into one auditable list.FAlt Text QualityAction8 of 77 images have issuesFIX
| Issue | Count |
|---|---|
| missing | 8 image(s) |
| too long | 13 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
An image inside a link with no alt creates an empty link.
Image-only links with no alt create empty links — screen-reader users hear 'link' with no destination context.
Learn more ▾ ▴
An <a><img></a> with no img alt is the worst-case for accessibility: AT announces the link but can't describe where it goes. Either add alt to the image OR add aria-label to the link.
Source: WCAG 2.1 SC 2.4.4
DLink & Button QualityAction3 issue(s) across 174 links and 10 buttonsFIX
| Element | Text | Issue | Suggested Fix |
|---|---|---|---|
| https://www.facebook.com/livescience?cmp… | Visit us on facebook | new tab | Add '(opens in new tab)' to text |
| https://twitter.com/LiveScience?cmpid=55… | Visit us on twitter | new tab | Add '(opens in new tab)' to text |
| https://www.instagram.com/live_science/?… | Visit us on instagram | new tab | Add '(opens in new tab)' to text |
| https://www.youtube.com/user/LiveScience… | Visit us on youtube | new tab | Add '(opens in new tab)' to text |
| https://flipboard.com/@LiveScience | Visit us on flipboard | new tab | Add '(opens in new tab)' to text |
| https://www.livescience.com/space/the-su… | Northern lights may be visible… | img no alt | Add alt attribute to the image |
| https://www.livescience.com/planet-earth… | Ancient process that created r… | img no alt | Add alt attribute to the image |
| https://www.livescience.com/planet-earth… | 'I've seen the movies. What a … | img no alt | Add alt attribute to the image |
| https://www.livescience.com/archaeology/… | 700-year-old mummy from Bolivi… | img no alt | Add alt attribute to the image |
| https://www.livescience.com/archaeology/… | Archaeologists discover perfec… | img no alt | Add alt attribute to the image |
| https://www.livescience.com/archaeology/… | Anglo-Saxon burial holds an ol… | img no alt | Add alt attribute to the image |
| https://www.livescience.com/chemistry/th… | 'They are literally everywhere… | img no alt | Add alt attribute to the image |
| https://www.livescience.com/space/space-… | Artemis II quiz: Is your knowl… | img no alt | Add alt attribute to the image |
| https://futureplc.com/future-member-term… | Terms & Conditions | new tab | Add '(opens in new tab)' to text |
| https://futureplc.com/privacy-policy/ | Privacy Policy | new tab | Add '(opens in new tab)' to text |
| https://futureplc.com/ | Visit our corporate site | new tab | Add '(opens in new tab)' to text |
| https://www.livescience.com/about-live-s… | About Us | new tab | Add '(opens in new tab)' to text |
| https://futureplc.com/contact/ | Contact Future's experts | new tab | Add '(opens in new tab)' to text |
| https://futureplc.com/terms-conditions/ | Terms and conditions | new tab | Add '(opens in new tab)' to text |
| https://futureplc.com/privacy-policy/ | Privacy policy | new tab | Add '(opens in new tab)' to text |
| https://futureplc.com/cookies-policy/ | Cookies policy | new tab | Add '(opens in new tab)' to text |
| https://futureplc.com/accessibility-stat… | Accessibility Statement | new tab | Add '(opens in new tab)' to text |
| https://go.future-advertising.com/Live-S… | Advertise with us | new tab | Add '(opens in new tab)' to text |
| https://www.livescience.com/how-to-turn-… | Web notifications | new tab | Add '(opens in new tab)' to text |
| https://futureplc.com/careers/ | Careers | new tab | Add '(opens in new tab)' to text |
| https://www.livescience.com/editorial-st… | Editorial standards | new tab | Add '(opens in new tab)' to text |
| https://www.livescience.com/how-to-pitch… | How to pitch a story to us | 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 |
Image-only links need alt text on the image (or aria-label on the link) so screen readers can announce them.
a[href="https://www.livescience.com/space/the-sun/northern-lights-may-be-visible-from…"]; a[href="https://www.livescience.com/planet-earth/geology/ancient-process-that-created…"]; a[href="https://www.livescience.com/planet-earth/weather/ive-seen-the-movies-what-a-h…"]; a[href="https://www.livescience.com/archaeology/americas/700-year-old-mummy-from-boli…"]; a[href="https://www.livescience.com/archaeology/ancient-egyptians/archaeologists-disc…"]; a[href="https://www.livescience.com/archaeology/anglo-saxon-burial-holds-an-older-sis…"]; a[href="https://www.livescience.com/chemistry/they-are-literally-everywhere-the-shock…"]; a[href="https://www.livescience.com/space/space-exploration/artemis-ii-quiz-is-your-k…"]
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/livescience?cmpid=556687; https://twitter.com/LiveScience?cmpid=556688; https://www.instagram.com/live_science/?hl=en; https://www.youtube.com/user/LiveScienceVideos; https://flipboard.com/@LiveScience; https://futureplc.com/future-member-terms-and-conditions/; https://futureplc.com/privacy-policy/; https://futureplc.com/; https://www.livescience.com/about-live-science; https://futureplc.com/contact/ (+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#close-bnt; button#scroll-left-btn; button#scroll-right-btn
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
D404 Error PageActionHTTP 404, custom pageFIX
DWeb ManifestActionNot foundFIX
No web manifest found.
DDark Mode SupportActionTheme color onlyFIX
Detection limited to meta tags and inline styles.
DPrint StylesheetActionNo print stylesFIX
BForm Accessibility2 of 7 controls have issuesREVIEW
| Control | Type | Label | Method |
|---|---|---|---|
| #burgerbar-none | radio | Close main menu | for/id |
| #burgerbar | radio | Open menu | for/id |
| #search-checkbox | checkbox | Search | for/id |
| #search-input | search | Search Live Science | for/id |
| #CONTACT_OTHER_BRANDS | checkbox | none | |
| #emailInput | (your@example.com) | placeholder only | |
| #submitBtn | submit | (none) | none |
Form controls need a <label>, aria-label, or aria-labelledby for screen readers.
<input type="submit" id="submitBtn">
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
Placeholder text disappears on focus and is not a reliable label.
<input type="email" name="email" id="emailInput">
Placeholder-only labels disappear when the user starts typing — they must remember what the field was for.
Learn more ▾ ▴
Placeholders are NOT labels. They vanish on input, fail color contrast checks (most are gray), and don't satisfy WCAG SC 3.3.2. Always use a real <label> alongside (or aria-labelledby).
Source: WCAG 2.1 SC 3.3.2 / Nielsen Norman
CFavicon & BrandingAction4 icon(s) detectedREVIEW
CColor Contrast (Screenshot)Action20 text elements analyzed, 20 fail WCAG AAREVIEW
Analyzes text contrast against the actual rendered page, including background images, gradients, and overlays that CSS-based tools cannot detect.
Show all checked elements (20)
| Element | Ratio | Required | FG | BG | Result |
|---|---|---|---|---|---|
| h1 Live Science | 1.01:1 | 3.0:1 | #000000 | #010208 | Fail |
| h2 Space | 1.01:1 | 3.0:1 | #000000 | #010208 | Fail |
| h2 Planet Earth | 1.01:1 | 3.0:1 | #000000 | #010208 | Fail |
| h2 Analysis | 1.01:1 | 3.0:1 | #000000 | #010208 | Fail |
| h2 Science Spotlight | 1.01:1 | 3.0:1 | #000000 | #010208 | Fail |
| h2 Opinion | 1.01:1 | 3.0:1 | #000000 | #010208 | Fail |
| h2 Explainers | 1.01:1 | 3.0:1 | #000000 | #010208 | Fail |
| h2 archaeology | 1.01:1 | 3.0:1 | #000000 | #010208 | Fail |
| h2 Animals | 1.01:1 | 3.0:1 | #000000 | #010208 | Fail |
| h2 Health & Human Behav… | 1.01:1 | 3.0:1 | #000000 | #010208 | Fail |
| h2 Life's Little Myster… | 1.01:1 | 3.0:1 | #000000 | #010208 | Fail |
| h2 Space photo of the w… | 1.01:1 | 3.0:1 | #000000 | #010208 | Fail |
| h2 Diagnostic dilemma | 1.01:1 | 3.0:1 | #000000 | #010208 | Fail |
| h2 Incredible places | 1.01:1 | 3.0:1 | #000000 | #010208 | Fail |
| h2 Astonishing artifact… | 1.01:1 | 3.0:1 | #000000 | #010208 | Fail |
| h2 Earth from space | 1.01:1 | 3.0:1 | #000000 | #010208 | Fail |
| h2 Technology | 1.01:1 | 3.0:1 | #000000 | #010208 | Fail |
| h2 Physics, Math & Chem… | 1.01:1 | 3.0:1 | #000000 | #010208 | Fail |
| h2 Quizzes & Games | 1.01:1 | 3.0:1 | #000000 | #010208 | Fail |
| h2 Live Science Recomme… | 1.01:1 | 3.0:1 | #000000 | #010208 | Fail |
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 88/100 — 4 failing, 31 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
Some ARIA roles have required attributes that describe the state of the element to screen readers. Learn more about roles and required attributes.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
div#slice-container-popularBox > section.popular-box > div.popular-box__label > div.popular-box__label__tab div#slice-container-popularBox > section.popular-box > div.popular-box__label > div.popular-box__label__tab |
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 |
|---|
TRENDING div#slice-container-trendingbar > div.trending__wrapper > nav.trending__nav > span#trending-items |
SCIENCE NEWS THIS WEEK article.search-result > div.content > p.synopsis > span.free-text-label |
EARTH FROM SPACE article.search-result > div.content > p.synopsis > span.free-text-label |
INTERVIEW article.search-result > div.content > p.synopsis > span.free-text-label |
INTERVIEW article.search-result > div.content > p.synopsis > span.free-text-label |
SCIENCE CROSSWORD article.search-result > div.content > p.synopsis > span.free-text-label |
QUIZ article.search-result > div.content > p.synopsis > span.free-text-label |
BUYING GUIDE article.search-result > div.content > p.synopsis > span.free-text-label |
BUYING GUIDE article.search-result > div.content > p.synopsis > span.free-text-label |
BUYING GUIDES article.search-result > div.content > p.synopsis > span.free-text-label |
These are opportunities to improve the legibility of your content.
Names and labels
Informative elements should aim for short, descriptive alternate text. Decorative elements can be ignored with an empty alt attribute. Learn more about the `alt` attribute.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
div.image-remove-flow-width-setter > div.image-remove-reflow-container > picture > img div.image-remove-flow-width-setter > div.image-remove-reflow-container > picture > img |
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.
Visible text labels that do not match the accessible name can result in a confusing experience for screen reader users. Learn more about accessible names.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
NASA shuts off another Voyager 1 instrument ahead of risky 'Big Bang' maneuver … div.wdn-fte-rcr > div.list-text-links > div.listingResult > a.article-link |
Florida is facing its most intense drought in 15 years. Here's how it got so ba… div.wdn-fte-rcr > div.list-text-links > div.listingResult > a.article-link |
Neanderthal toddlers grew faster than modern humans, probably because of the ha… div.wdn-fte-rcr > div.list-text-links > div.listingResult > a.article-link |
'Nations need to prepare now': Key Atlantic ocean current is much closer to col… div.wdn-fte-rcr > div.list-text-links > div.listingResult > a.article-link |
New blood test aims to spot liver scarring before it paves the way to cancer div.wdn-fte-rcr > div.list-text-links > div.listingResult > a.article-link |
'We're the best servants anyone could dream of!': AI superintelligence has no n… div.wdn-fte-rcr > div.list-text-links > div.listingResult > a.article-link |
Glowing ring of plankton surrounding New Zealand islands linked to deadly under… div.mainCarousel > section#homePageCarousel > div#Item1 > a.article-link |
Largest-ever 3D map of the universe shows 47 million galaxies, from the Milky W… div.mainCarousel > section#homePageCarousel > div#Item3 > a.article-link |
Scientists identify main cause of extreme nausea and vomiting in pregnancy
2 Co… div.mainCarousel > section#homePageCarousel > div#Item4 > a.article-link |
A giant 'shadow' has been creeping across Mars for 50 years — and scientists ar… div.mainCarousel > section#homePageCarousel > div#Item5 > a.article-link |
'The chances of you living 50 years are very small': Theoretical physicist expl… div.mainCarousel > section#homePageCarousel > div#Item6 > a.article-link |
Altar to Sol: A rare 1,900-year-old monument dedicated to the Roman god of ligh… div.mainCarousel > section#homePageCarousel > div#Item7 > a.article-link |
Can the US be trusted with the moon? A law scholar raises concerns after Artemi… section.listingResultsWrapper > div.listingResults > div.listingResult > a.article-link |
Physicists witness faster-than-light darkness pinpricks, humans found to still … section.listingResultsWrapper > div.listingResults > div.listingResult > a.article-link |
2 supermassive black holes may collide 100 years from now — and Earth would f… section.listingResultsWrapper > div.listingResults > div.listingResult > a.article-link |
Bright-green fireball meteor caught exploding above famous Viking raid site in … section.listingResultsWrapper > div.listingResults > div.listingResult > a.article-link |
Northern lights may be visible from several US states Friday and Saturday as gi… section.listingResultsWrapper > div.listingResults > div.listingResult > a.article-link |
Some polar bears are adapting to their melting habitat. Will it be enough to sa… section.listingResultsWrapper > div.listingResults > div.listingResult > a.article-link |
Colorado River may have pooled and spilled over to form the Grand Canyon, solvi… section.listingResultsWrapper > div.listingResults > div.listingResult > a.article-link |
Ancient process that created rare earth elements discovered — and it could help… section.listingResultsWrapper > div.listingResults > div.listingResult > a.article-link |
Mini lake meets snowy rim of Canada's oldest ice mass
By Harry Baker published… section.listingResultsWrapper > div.listingResults > div.listingResult > a.article-link |
'I've seen the movies. What a horrible way to die': What it's like to be sucked… section.listingResultsWrapper > div.listingResults > div.listingResult > a.article-link |
700-year-old mummy from Bolivia contains earliest confirmed evidence of strep t… section.listingResultsWrapper > div.listingResults > div.listingResult > a.article-link |
Did King Arthur really exist?
By Owen Jarus published April 18, 2026
The stor… section.listingResultsWrapper > div.listingResults > div.listingResult > a.article-link |
Archaeologists discover perfectly circular ancient Egyptian temple that may hav… section.listingResultsWrapper > div.listingResults > div.listingResult > a.article-link |
15 old shoes found in archaeological excavations around the world, including at… section.listingResultsWrapper > div.listingResults > div.listingResult > a.article-link |
Anglo-Saxon burial holds an older sister cradling her little brother after they… section.listingResultsWrapper > div.listingResults > div.listingResult > a.article-link |
Bruce the parrot is missing his upper beak — but that hasn't stopped him from … section.listingResultsWrapper > div.listingResults > div.listingResult > a.article-link |
Naked mole rats wage bloody wars of succession to choose a new queen — but one … section.listingResultsWrapper > div.listingResults > div.listingResult > a.article-link |
Can chickens really run around with their heads cut off?
By Ashley P. Taylor p… section.listingResultsWrapper > div.listingResults > div.listingResult > a.article-link |
New study confirms lobsters feel pain, driving scientists to call for a ban on … section.listingResultsWrapper > div.listingResults > div.listingResult > a.article-link |
Strange mammal ancestor laid huge, leathery eggs — and it was key to surviving… section.listingResultsWrapper > div.listingResults > div.listingResult > a.article-link |
Triassic croc relative from Ghost Ranch, New Mexico finally identified after ne… section.listingResultsWrapper > div.listingResults > div.listingResult > a.article-link |
Loneliness may contribute to memory issues, but not dementia — they are 'not th… section.listingResultsWrapper > div.listingResults > div.listingResult > a.article-link |
$3 million prize goes to duo whose research led to first sickle cell CRISPR the… section.listingResultsWrapper > div.listingResults > div.listingResult > a.article-link |
New pain-relief opioid could be much less addictive than morphine, rodent study… section.listingResultsWrapper > div.listingResults > div.listingResult > a.article-link |
Experimental drug doubles one-year survival in pancreatic cancer
By RJ Mackenz… section.listingResultsWrapper > div.listingResults > div.listingResult > a.article-link |
Science history: Doctor autopsies the brain of a man who couldn't speak — and r… section.listingResultsWrapper > div.listingResults > div.listingResult > a.article-link |
Diagnostic dilemma: A woman heard voices telling her she had a brain tumor — … section.listingResultsWrapper > div.listingResults > div.listingResult > a.article-link |
Hackers used AI to steal hundreds of millions of Mexican government and private… section.listingResultsWrapper > div.listingResults > div.listingResult > a.article-link |
This humanoid robot does all your housework for you — and its makers say it's… section.listingResultsWrapper > div.listingResults > div.listingResult > a.article-link |
AI for breakup texts? How 'sycophantic' chatbots are messing with our ability t… section.listingResultsWrapper > div.listingResults > div.listingResult > a.article-link |
Physicists witness pinpricks of darkness moving faster than the speed of light
… section.listingResultsWrapper > div.listingResults > div.listingResult > a.article-link |
Physicists entangle two moving atoms for the first time, validating 'spooky' qu… section.listingResultsWrapper > div.listingResults > div.listingResult > a.article-link |
'They are literally everywhere': The shocking story of how forever chemicals po… section.listingResultsWrapper > div.listingResults > div.listingResult > a.article-link |
Live Science crossword puzzle #40: Closest planet to the sun — 11 across
By Ha… section.listingResultsWrapper > div.listingResults > div.listingResult > a.article-link |
Artemis II quiz: Is your knowledge of NASA's historic moon mission out of this … section.listingResultsWrapper > div.listingResults > div.listingResult > a.article-link |
Octopus quiz: Are you a sucker for cephalopod science?
By Kenna Hughes-Castleb… section.listingResultsWrapper > div.listingResults > div.listingResult > a.article-link |
Best budget fitness trackers 2026: Cheap but mighty
By Maddy Biddulph, Anna Go… section.listingResultsWrapper > div.listingResults > div.listingResult > a.article-link |
Best fitness trackers 2026: From smart rings to multisport GPS watches
By Andr… section.listingResultsWrapper > div.listingResults > div.listingResult > a.article-link |
Best sports earbuds 2026: For runners, swimmers and other fitness enthusiasts
… section.listingResultsWrapper > div.listingResults > div.listingResult > a.article-link |
A+Landmark Structure71 landmarksPASS
A+Heading Hierarchy68 headingsPASS
- H1 Live Science
- H2 Latest News
- H3 NASA shuts off another Voyager 1 instrument ahead of risky 'Big Bang' maneuver to save power
- H3 Florida is facing its most intense drought in 15 years. Here's how it got so bad and how long it will last.
- H3 Neanderthal toddlers grew faster than modern humans, probably because of the harsh environment they evolved in
- H3 'Nations need to prepare now': Key Atlantic ocean current is much closer to collapse than scientists thought
- H3 New blood test aims to spot liver scarring before it paves the way to cancer
- H3 'We're the best servants anyone could dream of!': AI superintelligence has no need to enslave humans because we're already bowing to it
- H2 Space
- H3 Can the US be trusted with the moon? A law scholar raises concerns after Artemis II's success.
- H3 Physicists witness faster-than-light darkness pinpricks, humans found to still be evolving, and the endangered polar bears that are getting fatter than ever
- H3 2 supermassive black holes may collide 100 years from now — and Earth would feel it
- H3 Bright-green fireball meteor caught exploding above famous Viking raid site in UK
- H3 Northern lights may be visible from several US states Friday and Saturday as giant hole opens up in sun's atmosphere
- H2 Planet Earth
- H3 Some polar bears are adapting to their melting habitat. Will it be enough to save the iconic species?
- H3 Colorado River may have pooled and spilled over to form the Grand Canyon, solving a long-standing mystery — but not everyone agrees
- H3 Ancient process that created rare earth elements discovered — and it could help us locate desperately needed deposits
- H3 Mini lake meets snowy rim of Canada's oldest ice mass
- H3 'I've seen the movies. What a horrible way to die': What it's like to be sucked into a tornado and survive
- H2 Science News
- H2 Analysis
- H2 Science Spotlight
- H2 Opinion
- H2 Explainers
- H2 archaeology
- H3 700-year-old mummy from Bolivia contains earliest confirmed evidence of strep throat bacteria in the Americas
- H3 Did King Arthur really exist?
- H3 Archaeologists discover perfectly circular ancient Egyptian temple that may have been used for sacred water rituals
- H3 15 old shoes found in archaeological excavations around the world, including at Roman forts
- H3 Anglo-Saxon burial holds an older sister cradling her little brother after they both died 1,400 years ago, possibly of an infectious disease
- H2 Animals
- H3 Bruce the parrot is missing his upper beak — but that hasn't stopped him from becoming an undefeated jousting champion
- H3 Naked mole rats wage bloody wars of succession to choose a new queen — but one colony did something scientists have never seen before
- H3 Can chickens really run around with their heads cut off?
- H3 New study confirms lobsters feel pain, driving scientists to call for a ban on boiling them alive
- H3 Strange mammal ancestor laid huge, leathery eggs — and it was key to surviving the world's worst mass extinction
- H3 Triassic croc relative from Ghost Ranch, New Mexico finally identified after nearly 80 years in museum basement
- H2 Health & Human Behavior
- H3 Loneliness may contribute to memory issues, but not dementia — they are 'not the same thing'
- H3 $3 million prize goes to duo whose research led to first sickle cell CRISPR therapy
- H3 New pain-relief opioid could be much less addictive than morphine, rodent study finds
- H3 Experimental drug doubles one-year survival in pancreatic cancer
- H3 Science history: Doctor autopsies the brain of a man who couldn't speak — and reveals the seat of spoken language — April 18, 1861
- H3 Diagnostic dilemma: A woman heard voices telling her she had a brain tumor — and scans confirmed she did
- H2 World of science
- H2 Life's Little Mysteries
- H2 Space photo of the week
- H2 Diagnostic dilemma
- H2 Incredible places
- H2 Astonishing artifacts
- H2 Earth from space
- H2 Technology
- H3 Hackers used AI to steal hundreds of millions of Mexican government and private citizen records in one of the largest cybersecurity breaches ever
- H3 This humanoid robot does all your housework for you — and its makers say it's ready for your home
- H3 AI for breakup texts? How 'sycophantic' chatbots are messing with our ability to handle difficult social situations.
- H2 Physics, Math & Chemistry
- H3 Physicists witness pinpricks of darkness moving faster than the speed of light
- H3 Physicists entangle two moving atoms for the first time, validating 'spooky' quantum theory
- H3 'They are literally everywhere': The shocking story of how forever chemicals polluted the world
- H2 Quizzes & Games
- H3 Live Science crossword puzzle #40: Closest planet to the sun — 11 across
- H3 Artemis II quiz: Is your knowledge of NASA's historic moon mission out of this world?
- H3 Octopus quiz: Are you a sucker for cephalopod science?
- H2 Live Science Recommends
- H3 Best budget fitness trackers 2026: Cheap but mighty
- H3 Best fitness trackers 2026: From smart rings to multisport GPS watches
- H3 Best sports earbuds 2026: For runners, swimmers and other fitness enthusiasts