ADVERTISEMENT

Queen Elizabeth II turns 96

Published Apr 21, 2022 05:50 pm

LONDON, United Kingdom – Gun salutes will mark Queen Elizabeth II's 96th birthday on Thursday, although the monarch herself was expected to mark the occasion with little fanfare after a troubled year hit by health concerns.

Royal officials released a photograph of the horse-loving head of state with two of her fell ponies, as family members wished her well.

Her grandson Prince William and his wife Kate called her "an inspiration to so many across the UK, the Commonwealth and the world".

In the British capital, 62 gun rounds will be fired later from the Tower of London and 42 in Hyde Park, where a military band will also play "Happy Birthday".

Royal tradition since the 18th century has also seen the monarch have a second, official birthday, typically celebrated in warmer weather in June.

This year's official birthday coincides with four days of public events from June 2 to 5 to mark the queen's record-breaking 70th year on the throne.

No official engagements are planned on Thursday and the queen is spending time at her late husband Prince Philip's cottage on her Sandringham country estate, where he lived after retiring from public life in 2017.

The trip is being seen as a "positive step", given the queen's recent health problems, British media reported.

Since an unscheduled overnight stay in hospital last October, she has cut down massively on public appearances on doctor's orders.

A back complaint and difficulties standing and walking have seen her cancel a number of engagements, including recent church events to mark Easter.

A bout of Covid-19 in February left her "very tired and exhausted", she admitted earlier this month.

But William's brother Prince Harry told US broadcaster NBC in an interview aired on Wednesday that she was "on great form" when he saw her last week.

The queen was last seen in public at Westminster Abbey in central London on March 29 at a memorial service for Prince Philip, who died last year aged 99.

- Health and succession -

The queen's enforced retreat from public life in her Platinum Jubilee year has increased attention on the succession and future of the monarchy.

Her eldest son and heir, Prince Charles, has assumed more of his mother's responsibilities in preparation to take over the throne.

His popularity has increased in recent years, according to an Ipsos poll of more than 2,000 adults in Britain in March.

But his 43 percent approval rating is still well behind that of his mother (69 percent), his eldest son Prince William (64 percent) and his daughter-in-law Kate Middleton (60 percent).

Some 42 percent of those surveyed also said they believed Charles, 73, should step aside for William, who turns 40 in June.

Aside from questions about the queen's health and the succession, the royals have rarely been out of the headlines due to a succession of scandals.

Last month there was controversy after the queen's disgraced second son Prince Andrew supported her at Prince Philip's memorial service.

In February, he settled a US civil claim for sexual assault that had earlier seen him stripped of his honorary royal military titles and charitable roles.

The palace is said to be bracing for fresh revelations about royal life from Harry, who is due to publish his memoirs later this year.

The former British Army captain quit the royal frontline last year and moved to California with his American wife Meghan Markle.

From there, the couple accused the royal family of racism, while Harry claimed his father Charles and brother William were "trapped" within the system of the British monarchy.

The future of the royal family's global reach is also far from assured.

The queen is head of state of Britain and 14 other Commonwealth countries around the world.

But Barbados became a republic last year and a number of other Caribbean countries, including Jamaica, have since indicated they want to follow suit.

Related Tags

Britain Queen Elizabeth
ADVERTISEMENT
.most-popular .layout-ratio{ padding-bottom: 79.13%; } @media (min-width: 768px) and (max-width: 1024px) { .widget-title { font-size: 15px !important; } }

{{ articles_filter_1561_widget.title }}

.most-popular .layout-ratio{ padding-bottom: 79.13%; } @media (min-width: 768px) and (max-width: 1024px) { .widget-title { font-size: 15px !important; } }

{{ articles_filter_1562_widget.title }}

.most-popular .layout-ratio{ padding-bottom: 79.13%; } @media (min-width: 768px) and (max-width: 1024px) { .widget-title { font-size: 15px !important; } }

{{ articles_filter_1563_widget.title }}

{{ articles_filter_1564_widget.title }}

.mb-article-details { position: relative; } .mb-article-details .article-body-preview, .mb-article-details .article-body-summary{ font-size: 17px; line-height: 30px; font-family: "Libre Caslon Text", serif; color: #000; } .mb-article-details .article-body-preview iframe , .mb-article-details .article-body-summary iframe{ width: 100%; margin: auto; } .read-more-background { background: linear-gradient(180deg, color(display-p3 1.000 1.000 1.000 / 0) 13.75%, color(display-p3 1.000 1.000 1.000 / 0.8) 30.79%, color(display-p3 1.000 1.000 1.000) 72.5%); position: absolute; height: 200px; width: 100%; bottom: 0; display: flex; justify-content: center; align-items: center; padding: 0; } .read-more-background a{ color: #000; } .read-more-btn { padding: 17px 45px; font-family: Inter; font-weight: 700; font-size: 18px; line-height: 16px; text-align: center; vertical-align: middle; border: 1px solid black; background-color: white; } .hidden { display: none; }
function initializeAllSwipers() { // Get all hidden inputs with cms_article_id document.querySelectorAll('[id^="cms_article_id_"]').forEach(function (input) { const cmsArticleId = input.value; const articleSelector = '#article-' + cmsArticleId + ' .body_images'; const swiperElement = document.querySelector(articleSelector); if (swiperElement && !swiperElement.classList.contains('swiper-initialized')) { new Swiper(articleSelector, { loop: true, pagination: false, navigation: { nextEl: '#article-' + cmsArticleId + ' .swiper-button-next', prevEl: '#article-' + cmsArticleId + ' .swiper-button-prev', }, }); } }); } setTimeout(initializeAllSwipers, 3000); const intersectionObserver = new IntersectionObserver( (entries) => { entries.forEach((entry) => { if (entry.isIntersecting) { const newUrl = entry.target.getAttribute("data-url"); if (newUrl) { history.pushState(null, null, newUrl); let article = entry.target; // Extract metadata const author = article.querySelector('.author-section').textContent.replace('By', '').trim(); const section = article.querySelector('.section-info ').textContent.replace(' ', ' '); const title = article.querySelector('.article-title h1').textContent; // Parse URL for Chartbeat path format const parsedUrl = new URL(newUrl, window.location.origin); const cleanUrl = parsedUrl.host + parsedUrl.pathname; // Update Chartbeat configuration if (typeof window._sf_async_config !== 'undefined') { window._sf_async_config.path = cleanUrl; window._sf_async_config.sections = section; window._sf_async_config.authors = author; } // Track virtual page view with Chartbeat if (typeof pSUPERFLY !== 'undefined' && typeof pSUPERFLY.virtualPage === 'function') { try { pSUPERFLY.virtualPage({ path: cleanUrl, title: title, sections: section, authors: author }); } catch (error) { console.error('ping error', error); } } // Optional: Update document title if (title && title !== document.title) { document.title = title; } } } }); }, { threshold: 0.1 } ); function showArticleBody(button) { const article = button.closest("article"); const summary = article.querySelector(".article-body-summary"); const body = article.querySelector(".article-body-preview"); const readMoreSection = article.querySelector(".read-more-background"); // Hide summary and read-more section summary.style.display = "none"; readMoreSection.style.display = "none"; // Show the full article body body.classList.remove("hidden"); } document.addEventListener("DOMContentLoaded", () => { let loadCount = 0; // Track how many times articles are loaded const offset = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]; // Offset values const currentUrl = window.location.pathname.substring(1); let isLoading = false; // Prevent multiple calls if (!currentUrl) { console.log("Current URL is invalid."); return; } const sentinel = document.getElementById("load-more-sentinel"); if (!sentinel) { console.log("Sentinel element not found."); return; } function isSentinelVisible() { const rect = sentinel.getBoundingClientRect(); return ( rect.top < window.innerHeight && rect.bottom >= 0 ); } function onScroll() { if (isLoading) return; if (isSentinelVisible()) { if (loadCount >= offset.length) { console.log("Maximum load attempts reached."); window.removeEventListener("scroll", onScroll); return; } isLoading = true; const currentOffset = offset[loadCount]; window.loadMoreItems().then(() => { let article = document.querySelector('#widget_1690 > div:nth-last-of-type(2) article'); intersectionObserver.observe(article) loadCount++; }).catch(error => { console.error("Error loading more items:", error); }).finally(() => { isLoading = false; }); } } window.addEventListener("scroll", onScroll); });

Sign up by email to receive news.