Okay,here’s a breakdown of the provided HTML meta tags,categorized and explained. This facts is used for Search Engine Optimization (SEO) and social media sharing.
1. Preload Resources (Performance)
* <link rel="preload" as="font" crossorigin="anonymous" href="https://www.smh.com.au/hashed-assets/feb4c371.woff2" rel="preload"/>
* This tag tells the browser to download the specified web font (.woff2 format) as early as possible. crossorigin="anonymous" is needed because the font is hosted on a different domain. Preloading improves page load speed by making the font available before it’s needed for rendering.
2. Basic SEO Meta Tags
* <meta data-rh="true" content="Video: Australian Open Highlights: Michael Zheng v sebastian Korda" name="title"/>
* This is the page title that appears in browser tabs and search engine results. It’s a crucial SEO element.
* <meta data-rh="true" content="Watch the match highlights between Michael Zheng & Sebastian Korda in Round 1 of the 2026 Australian Open." name="description"/>
* This is the meta description. It’s a short summary of the page’s content, displayed in search engine results below the title. It’s critically important for attracting clicks. note the & which is the HTML entity for the ampersand (&) character.
* <meta data-rh="true" content="" name="keywords"/>
* The keywords meta tag was once critically important for SEO, but it’s largely ignored by modern search engines (Google, Bing). It’s left blank here.
* <meta data-rh="true" content="" name="news_keywords"/>
* Similar to the keywords tag, but specifically for news articles. Also left blank.
3. Facebook Meta Tags (Open Graph)
These tags are used when the page is shared on Facebook. They control how the link appears.
* <meta data-rh="true" content="193677504039845" property="fb:app_id"/>
* Facebook App ID.Used if the website is connected to a Facebook app.
* <meta data-rh="true" content="104598631263" property="fb:pages"/>… <meta data-rh="true" content="374468399414748" property="fb:pages"/> … <meta data-rh="true" content="1432569230378131" property="fb:pages"/>
* These tags list various Facebook page IDs that are related to the content. This helps Facebook understand the context of the page and potentially suggest relevant pages to users. There are a lot of them, suggesting a broad network of related Facebook pages.
4. Open Graph Meta Tags (General Social Sharing)
These tags are used by various social media platforms (including Facebook, but also others) to generate rich previews when the page is shared.
* <meta data-rh="true" content="Watch the match highlights between Michael Zheng & Sebastian Korda in Round 1 of the 2026 Australian Open." property="og:description"/>
* the description used for social media shares. It’s the same as the meta description.
* <meta data-rh="true" content="https://static.ffx.io/images/$width_800%2C$height_450/t_crop_fill/q_86%2Cf_auto/02ae8d7143ab52725775cb0add68587943fc924c" property="og:image"/>
* The URL of the image to be displayed when the page is shared.
* <meta data-rh="true" content="800" property="og:image:width"/>
* The width of the image in pixels.
* <meta data-rh="true" content="450" property="og:image:height"/>
* The height of the image in pixels.
* `