 #  Mastering the HTML head in Joomla 

 

The HTML head element is the backbone of your [Joomla 5](/blog/development/one-sh-tty-email-that-made-me-finally-do-something-about-spam "One Sh*tty Email That Made Me Finally Do Something About Spam") site’s [SEO](/test-article "Shader BG Test"), [performance](/blog/development/server-timing-for-geoip-data-delivery-to-achieve-gdpr-compliance "Server-Timing for GeoIP Data Delivery to Achieve GDPR Compliance"), and social media presence. It contains metadata that instructs browsers, search engines, and social platforms on how to handle your content. While Joomla excels at managing basic metadata like &lt;title&gt; and &lt;meta name="description"&gt;, it lacks native support for advanced features like OpenGraph, Twitter Card tags, and extended robots directives. This guide provides Joomla developers and site owners with the bare minimum &lt;head&gt; tags, favicon setup, social media metadata, and SEO-focused links, leveraging plugins like [Route 66](https://extensions.joomla.org/extension/route-66/) and RicheyWeb’s [Fields - XMLForm](/software/joomla/plugins/fields-xmlform), [System - Link Canonical](/software/joomla/plugins/system-link-canonical), [System - Head Tag](/software/joomla/plugins/system-headtag), and [System - Meta Robots](/software/joomla/plugins/system-meta-robots) to simplify implementation and enhance SEO control.

## The Role of the &lt;head&gt; in Technical SEO

The &lt;head&gt; element is a cornerstone of [technical SEO](/white-hat-seo/white-hat-seo "White-Hat SEO"), directly influencing how search engines crawl, index, and rank your Joomla 5 site. Key elements like the &lt;title&gt; and &lt;meta name="description"&gt; tags define page relevance, appearing in search results to attract clicks. The charset and viewport tags ensure proper rendering, impacting user experience and mobile-friendliness—both critical Google ranking factors.

### Meta Robots

The robots tag, enhanced by [System - Meta Robots plugin](/blog/development/problems-turn-into-features "Problems Turn Into Features"), controls crawler behavior with advanced directives like [noindex](/white-hat-seo/technical-seo "Technical SEO"), nofollow, nosnippet, and unavailable\_after, ensuring precise indexing and snippet display.

### Canonical URLs

Canonical tags, managed via the [System - Link Canonical](/software/joomla/plugins/system-link-canonical) plugin, prevent duplicate content penalties by consolidating page authority. Sitemap and RSS links guide crawlers to your content, improving indexability, while OpenGraph and Twitter Card tags, enabled by plugins like Route66 or XMLForm, enhance social sharing, driving traffic and engagement. A well-optimized &lt;head&gt; ensures Joomla 5 sites meet search engine requirements for visibility and performance.

## Bare Minimum HTML &lt;head&gt;

The &lt;head&gt; element holds critical metadata, such as the document’s title, character encoding, and links to external resources like CSS and JavaScript. Here’s the bare minimum every Joomla 5 site should include:

 ```
<!-- Bare minimum HTML head for Joomla 5 --><br></br><head><br></br>  <meta charset="utf-8"><br></br>  <meta name="viewport" content="width=device-width, initial-scale=1"><br></br>  <meta name="robots" content="index, follow"><br></br>  <title>Page Title</title><br></br>  <meta name="description" content="Page description. Keep it under 160 characters for SEO."><br></br></head>
```

- Charset Meta Tag: The &lt;meta charset="utf-8"&gt; tag, typically set in your Joomla template’s index.php, ensures proper character rendering for multilingual content. Place it first in &lt;head&gt; to prevent rendering issues.
- Viewport Meta Tag: The &lt;meta name="viewport" content="width=device-width, initial-scale=1"&gt; tag ensures responsive rendering on mobile devices, a must for Joomla 5’s mobile-friendly templates (e.g., those using Bootstrap).
- Robots Meta Tag: The &lt;meta name="robots" content="index, follow"&gt; tag tells search engines whether to index the page and follow its links. 
    - Joomla 5’s core supports basic directives (index, noindex, follow, nofollow) via Global Configuration’s “Search Engine Friendly” settings or article metadata.
    - For advanced control, RicheyWeb’s [System - Meta Robots](/software/joomla/plugins/system-meta-robots) plugin incorporates the X-Robots header and enhances SEO by fine-tuning crawler behavior and snippet display by adding additional directives. <https://ahrefs.com/blog/meta-robots/> <https://rankmath.com/kb/robots-meta-tag-vs-x-robots/>
        - all
        - none
        - nosnippet (prevents text/video snippets in search results)
        - noarchive (blocks cached copies)
        - indexifembedded (allows indexing in iframes despite noindex)
        - max-snippet:\[number\] (limits snippet length)
        - max-image-preview:\[setting\] (controls image preview size)
        - max-video-preview:\[number\] (limits video preview duration)
        - notranslate (prevents translation offers)
        - noimageindex (blocks image indexing)
        - unavailable\_after:\[date\] (de-indexes after a date).
- Title Element: The &lt;title&gt; tag defines the page title shown in search results and browser tabs. In Joomla 5, it’s dynamically set via Menu Items, articles, or Global Configuration’s “Browser Page Title” setting.
- Description Meta Tag: The &lt;meta name="description"&gt; tag provides a brief page summary for search engine results. Keep it under 160 characters and configure it dynamically via Joomla’s Menu Manager or article metadata.
 
![](https://cdn.richeyweb.com/images/articles/metarobots/metarobots-ss.webp)

## HTML Head Icon Tags

Favicons and device-specific icons enhance your Joomla 5 site’s branding across browsers and devices. Joomla provides a default favicon at /media/system/images/favicon.ico, but you can override it by placing a custom favicon.ico in /media/templates/site/yourtemplate/images/favicon.ico. For sites using multiple templates (e.g., based on menu items), each template can define its own favicon in its respective /media/templates/site/yourtemplate/images/ folder, offering flexible branding.

Here’s a minimal set of icon tags for modern Joomla 5 sites:

 ```
<!-- Favicon tags for Joomla 5 --><br></br><head><br></br>  <link rel="icon" sizes="192x192" href="https://cdn.richeyweb.com/media/templates/site/yourtemplate/images/favicon.png"><br></br>  <link rel="apple-touch-icon" href="https://cdn.richeyweb.com/media/templates/site/yourtemplate/images/favicon.png"><br></br>  <link rel="mask-icon" href="https://cdn.richeyweb.com/media/templates/site/yourtemplate/images/favicon.svg" color="#000000"><br></br></head>
```

- A single 192x192 PNG covers most modern browsers and devices. For iOS devices, consider a 180x180 version for optimal Apple Touch Icon display.
- The mask-icon tag supports Safari pinned tabs, using a monochrome SVG with a tint color specified in the color attribute.
- Use tools like favicon.io or RealFaviconGenerator.net to generate a full icon set and corresponding &lt;link&gt; tags. Add these to your template’s index.php above &lt;jdoc:include type="head" /&gt; for custom control.
 
## Scripts and Styles

You'll find no end to the options when it comes to adding scripts and styles to the document head, or any tag for that matter.

RicheyWeb has several methods, but the one most often recommended in the forums and on StackExchange is [System - Head Tag](/software/joomla/plugins/system-headtag). Whether you're inserting a custom stylesheet or want to add ahrefs tag to Joomla, it doesn't get much easier than using System - Head Tag. Take the ahrefs tag, for example. They will provide you with a complete link tag, which you can paste directly into an System - Head Tag public access level custom tag item and you're done.

## Social Tags for HTML Head

Social media sharing relies on OpenGraph and Twitter Card tags to create rich previews when your Joomla content is shared on platforms like [Facebook](/blog/development/gpc-dnt-do-not-tracks-toothless-twin "GPC: DNT/Do Not Track’s Toothless Twin") and Twitter. Joomla 5 doesn’t natively generate these tags, making plugins essential for modern SEO and social visibility. Below is a minimal set of social tags to include in your &lt;head&gt;:

 ```
<!-- Social tags for Joomla 5 with plugin support --><br></br><head><br></br>  <meta property="og:title" content="Page Title"><br></br>  <meta property="og:description" content="Page description. Keep it under 160 characters."><br></br>  <meta property="og:image" content="https://richeyweb.com/image.jpg"><br></br>  <meta property="og:site_name" content="RicheyWeb"><br></br>  <meta property="og:url" content="https://richeyweb.com/page.html"><br></br>  <meta name="twitter:card" content="summary_large_image"><br></br>  <meta name="twitter:title" content="Page Title"><br></br>  <meta name="twitter:description" content="Page description. Up to 200 characters for Twitter."><br></br>  <meta name="twitter:image" content="https://richeyweb.com/image.jpg"><br></br>  <meta name="twitter:site" content="@RicheyWeb"><br></br></head>
```

## Why Social Tags Matter for Joomla

Without OpenGraph and Twitter Card tags, shared links may display poorly on social platforms, reducing click-through rates. These tags ensure professional previews with titles, descriptions, and images.

- OpenGraph Tags: Used by Facebook, LinkedIn, and others to display titles, descriptions, images, and URLs in previews. Route66 automates this by pulling data from Joomla’s article or menu metadata, ensuring consistency.
- Twitter Card Tags: Provide similar previews for Twitter, with summary\_large\_image ideal for content-heavy Joomla sites. Other options (summary, app, player) suit specific cases like video or app promotion.
- Automation Tip: Joomla 5 lacks native support for OpenGraph and Twitter Card tags. Use plugins like [Route 66](https://extensions.joomla.org/extension/route-66/) or my free [Fields - XMLForm](/software/joomla/plugins/fields-xmlform) plugin with TwitterCard (supplied by [Field - Subform/XMLForm Packages](/software/examples/subform-xmlform/field-subform-xmlform-packages)) support to dynamically generate these tags from article or menu metadata for seamless integration and maintenance.
 
## HTML Head Links

The &lt;head&gt; element includes links to external resources like CSS and JavaScript, but certain &lt;link&gt; tags are critical for SEO and functionality. Joomla 5 handles some automatically (e.g., CSS via &lt;jdoc:include type="head" /&gt;), but others require plugins or manual addition.

 ```
<!-- Essential head links for Joomla 5 SEO --><br></br><head><br></br>  <link rel="canonical" href="https://www.richeyweb.com/page.html"><br></br>  <link rel="sitemap" type="application/xml" href="https://www.richeyweb.com/sitemap.xml"><br></br>  <link href="/?format=feed&amp;type=rss" rel="alternate" type="application/rss+xml" title="RicheyWeb Software Development"><br></br>  <link href="https://www.richeyweb.com/search?format=opensearch" rel="search" title="RicheyWeb" type="application/opensearchdescription+xml"><br></br></head>
```

- Canonical Link: Prevents duplicate content issues by specifying the preferred URL. Joomla’s default canonical tags can create conflicting URLs, so use my [System - Link Canonical](/software/joomla/plugins/system-link-canonical) plugin to ensure a single, consistent URL and avoid Google penalties.
- Sitemap Link: Points search engines to your sitemap (e.g., generated by Route 66 or OSMap) for better indexing. Joomla 5 doesn’t create sitemaps natively, so plugins are essential. This is a static element, and can be added to your template index.php file.
- RSS Feed Link: Enables RSS readers and search engines to access your latest content. Enable RSS in Joomla’s Content component settings.
- Search Link: Adds a browser search box for your site, ideal for e-commerce or search-heavy Joomla sites using the built-in Search module.
 
## Joomla is Extremely Capable

A well-optimized HTML &lt;head&gt; is critical for Joomla 5 sites, boosting SEO, mobile compatibility, and social sharing. By including essential tags for metadata, favicons, social previews, and SEO links, and leveraging plugins like [Route 66](https://extensions.joomla.org/extension/route-66/), my free [Fields - XMLForm](/software/joomla/plugins/fields-xmlform) plugin, [System - Link Canonical](/software/joomla/plugins/system-link-canonical) plugin, and [System - Meta Robots](/software/joomla/plugins/system-meta-robots) plugin, you can streamline implementation and fine-tune search engine behavior. Struggling with your Joomla site’s &lt;head&gt; or technical SEO? [Contact RicheyWeb](/contact-us) for expert [Joomla development](/joomla-techniques/building-a-better-joomla "Building a better Joomla") and SEO solutions tailored to your needs.



- [      email ](mailto:?subject=Mastering+the+HTML+head+in+Joomla&body=https%3A%2F%2Fwww.richeyweb.com%2Fblog%2Fhosting%2Fmastering-the-html-head-in-joomla)
- [      facebook ](https://www.facebook.com/sharer/sharer.php?u=https%3A%2F%2Fwww.richeyweb.com%2Fblog%2Fhosting%2Fmastering-the-html-head-in-joomla)
- [      x-twitter ](https://twitter.com/intent/tweet?text=Mastering+the+HTML+head+in+Joomla%3A+https%3A%2F%2Fwww.richeyweb.com%2Fblog%2Fhosting%2Fmastering-the-html-head-in-joomla)
- [      linkedin ](http://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fwww.richeyweb.com%2Fblog%2Fhosting%2Fmastering-the-html-head-in-joomla&title=Mastering+the+HTML+head+in+Joomla&summary=The+HTML+head+element+is+the+backbone+of+your+Joom...)
- [      pinterest ](http://pinterest.com/pin/create/button/?url=https%3A%2F%2Fwww.richeyweb.com%2Fblog%2Fhosting%2Fmastering-the-html-head-in-joomla&media=https%3A%2F%2Fwww.richeyweb.com%2Fimages%2Farticles%2Fmetarobots%2Fmetarobots-ss.webp&description=Mastering+the+HTML+head+in+Joomla)
 


 

   [  Previous article: Negative SEO via URL Parameter Abuse in Joomla   Negative SEO via URL Parameter Abuse in Joomla ](/blog/hosting/negative-seo-via-url-parameter-abuse-in-joomla) [  Next article: unavailable\_after White-Hat SEO Hack Might Be Paying Off  unavailable\_after White-Hat SEO Hack Might Be Paying Off  ](/blog/hosting/unavailable-after-white-hat-seo-hack-might-be-paying-off)  

##### We Value Your Privacy

 

We use cookies to enhance your experience and for traffic analysis. By continuing to visit this site you agree to our use of cookies.

[Privacy Policy](/privacy-policy)

 Details 

###### Google Tag Manager Items

- Ad Storage
- Ad User Data
- Ad Personalization
- Analytics Storage
- Functionality Storage
- Personalization Storage
- Security Storage
 
 

 

 

 

 

 Decline Accept
```json
{"@context":"https://schema.org","@graph":[{"@type":"Organization","@id":"https://www.richeyweb.com/#organization","name":"RicheyWeb","url":"https://www.richeyweb.com/","logo":{"@type":"ImageObject","url":"https://www.richeyweb.com/images/logo/richeyweb.svg","contentUrl":"https://www.richeyweb.com/images/logo/richeyweb.svg","width":{"@type":"QuantitativeValue","value":38,"unitCode":"PX"},"height":{"@type":"QuantitativeValue","value":38,"unitCode":"PX"},"@id":"https://www.richeyweb.com/#logo"},"image":{"@id":"https://www.richeyweb.com/#logo"},"sameAs":["https://x.com/ComRicheyweb","https://www.facebook.com/RicheyWebDev/","https://www.youtube.com/channel/UCxnVG8BwOvQRO7hVqNX7T2g","https://community.joomla.org/service-providers-directory/listings/115:richeyweb.html"],"description":"RicheyWeb is a custom software developer specializing in Joomla extensions.","ContactPoint":[{"@type":"ContactPoint","url":"https://www.richeyweb.com/contact-us","telephone":"903-873-8460","contactType":"Owner/Administrator","areaServed":["United States",{"@type":"Country","name":"United States","sameAs":["https://en.wikipedia.org/wiki/United_States","https://www.wikidata.org/wiki/Q30","https://g.co/kg/m/09c7w0"]},"European Union",{"@type":"AdministrativeArea","name":"European Union","sameAs":["https://en.wikipedia.org/wiki/European_Union","https://www.wikidata.org/wiki/Q458","https://g.co/kg/m/0_6t_z8"]},"United Kingdom",{"@type":"Country","name":"United Kingdom","sameAs":["https://en.wikipedia.org/wiki/United_Kingdom","https://www.wikidata.org/wiki/Q145","https://g.co/kg/m/07ssc"]},"Australia",{"@type":"Country","name":"Australia","sameAs":["https://en.wikipedia.org/wiki/Australia","https://www.wikidata.org/wiki/Q408","https://g.co/kg/m/0chghy"]},"Canada",{"@type":"Country","name":"Canada","sameAs":["https://en.wikipedia.org/wiki/Canada","https://www.wikidata.org/wiki/Q16","https://g.co/kg/m/0d060g"]},"Russia",{"@type":"Country","name":"Russia","sameAs":["https://en.wikipedia.org/wiki/Russia","https://www.wikidata.org/wiki/Q159","https://g.co/kg/m/06bnz"]},"China",{"@type":"Country","name":"China","sameAs":["https://en.wikipedia.org/wiki/China","https://www.wikidata.org/wiki/Q148","https://g.co/kg/m/0d05w3"]}],"availableLanguage":"en"},{"@type":"ContactPoint","url":"https://www.richeyweb.com/bugs","telephone":"903-873-8460","contactType":"Technical Support","areaServed":["United States",{"@type":"Country","name":"United States","sameAs":["https://en.wikipedia.org/wiki/United_States","https://www.wikidata.org/wiki/Q30","https://g.co/kg/m/09c7w0"]},"European Union",{"@type":"AdministrativeArea","name":"European Union","sameAs":["https://en.wikipedia.org/wiki/European_Union","https://www.wikidata.org/wiki/Q458","https://g.co/kg/m/0_6t_z8"]},"United Kingdom",{"@type":"Country","name":"United Kingdom","sameAs":["https://en.wikipedia.org/wiki/United_Kingdom","https://www.wikidata.org/wiki/Q145","https://g.co/kg/m/07ssc"]},"Australia",{"@type":"Country","name":"Australia","sameAs":["https://en.wikipedia.org/wiki/Australia","https://www.wikidata.org/wiki/Q408","https://g.co/kg/m/0chghy"]},"Canada",{"@type":"Country","name":"Canada","sameAs":["https://en.wikipedia.org/wiki/Canada","https://www.wikidata.org/wiki/Q16","https://g.co/kg/m/0d060g"]},"Russia",{"@type":"Country","name":"Russia","sameAs":["https://en.wikipedia.org/wiki/Russia","https://www.wikidata.org/wiki/Q159","https://g.co/kg/m/06bnz"]},"China",{"@type":"Country","name":"China","sameAs":["https://en.wikipedia.org/wiki/China","https://www.wikidata.org/wiki/Q148","https://g.co/kg/m/0d05w3"]}],"availableLanguage":"en"}],"knowsAbout":["Computer programming",{"@type":"Thing","name":"Computer programming","sameAs":["https://en.wikipedia.org/wiki/Computer_programming","https://www.wikidata.org/wiki/Q80006","https://g.co/kg/m/01mf_"]},"PHP",{"@type":"Thing","name":"PHP","sameAs":["https://en.wikipedia.org/wiki/PHP","https://www.wikidata.org/wiki/Q59","https://g.co/kg/m/060kv"]},"JavaScript",{"@type":"Thing","name":"JavaScript","sameAs":["https://en.wikipedia.org/wiki/JavaScript","https://www.wikidata.org/wiki/Q2005","https://g.co/kg/m/02p97"]},"arduino","Computer forensics",{"@type":"Thing","name":"Computer forensics","sameAs":["https://en.wikipedia.org/wiki/Computer_forensics","https://www.wikidata.org/wiki/Q878553","https://g.co/kg/m/02wxbd"]},"White hat",{"@type":"Thing","name":"White hat","sameAs":["https://en.wikipedia.org/wiki/White_hat_(computer_security)","https://www.wikidata.org/wiki/Q7995625","https://g.co/kg/m/03ns_5"]},"Search engine optimization",{"@type":"Thing","name":"Search engine optimization","sameAs":["https://en.wikipedia.org/wiki/Search_engine_optimization","https://www.wikidata.org/wiki/Q180711","https://g.co/kg/m/019qb_"]},"Search engine marketing",{"@type":"Thing","name":"Search engine marketing","sameAs":["https://en.wikipedia.org/wiki/Search_engine_marketing","https://www.wikidata.org/wiki/Q846132","https://g.co/kg/m/06mw8r"]},"Digital marketing",{"@type":"Thing","name":"Digital marketing","sameAs":["https://en.wikipedia.org/wiki/Digital_marketing","https://www.wikidata.org/wiki/Q1323528","https://g.co/kg/g/122hcnps"]},"Web hosting service",{"@type":"Thing","name":"Web hosting service","sameAs":["https://en.wikipedia.org/wiki/Web_hosting_service","https://www.wikidata.org/wiki/Q5892272","https://g.co/kg/m/014pz4"]},"Email hosting service",{"@type":"Thing","name":"Email hosting service","sameAs":["https://en.wikipedia.org/wiki/Email_hosting_service","https://www.wikidata.org/wiki/Q5368818","https://g.co/kg/m/09w60m"]},"Internet hosting service",{"@type":"Thing","name":"Internet hosting service","sameAs":["https://en.wikipedia.org/wiki/Internet_hosting_service","https://www.wikidata.org/wiki/Q1210425","https://g.co/kg/m/09w5yw"]},"Virtual hosting",{"@type":"Thing","name":"Virtual hosting","sameAs":["https://en.wikipedia.org/wiki/Virtual_hosting","https://www.wikidata.org/wiki/Q588365","https://g.co/kg/m/024mvh"]},"Web performance",{"@type":"Thing","name":"Web performance","sameAs":["https://en.wikipedia.org/wiki/Web_performance","https://www.wikidata.org/wiki/Q7978612","https://g.co/kg/m/0gfj3f1"]},"Web content management system",{"@type":"Thing","name":"Web content management system","sameAs":["https://en.wikipedia.org/wiki/Web_content_management_system","https://www.wikidata.org/wiki/Q45211","https://g.co/kg/m/0615s2"]},"Content management system",{"@type":"Thing","name":"Content management system","sameAs":["https://en.wikipedia.org/wiki/Content_management_system","https://www.wikidata.org/wiki/Q131093","https://g.co/kg/m/0k23c"]},"General Data Protection Regulation",{"@type":"Thing","name":"General Data Protection Regulation","sameAs":["https://en.wikipedia.org/wiki/General_Data_Protection_Regulation","https://www.wikidata.org/wiki/Q1172506","https://g.co/kg/m/0pk_7xs"]},"SERP",{"@type":"Thing","name":"SERP","sameAs":["https://en.wikipedia.org/wiki/SERP","https://www.wikidata.org/wiki/Q2205811","https://g.co/kg/g/11c5szp7kc"]},"Artificial intelligence",{"@type":"Thing","name":"Artificial intelligence","sameAs":["https://en.wikipedia.org/wiki/Artificial_intelligence","https://www.wikidata.org/wiki/Q11660","https://g.co/kg/m/0mkz"]},"Prompt engineering",{"@type":"Thing","name":"Prompt engineering","sameAs":["https://en.wikipedia.org/wiki/Prompt_engineering","https://www.wikidata.org/wiki/Q108941486","https://g.co/kg/g/11p6kpgt_n"]},"E-learning",{"@type":"Thing","name":"E-learning","sameAs":["https://en.wikipedia.org/wiki/E-learning_(theory)","https://www.wikidata.org/wiki/Q182250","https://g.co/kg/g/122czm1f"]},"Sharable Content Object Reference Model",{"@type":"Thing","name":"Sharable Content Object Reference Model","sameAs":["https://en.wikipedia.org/wiki/Sharable_Content_Object_Reference_Model","https://www.wikidata.org/wiki/Q827811","https://g.co/kg/m/06_40"]},"Experience API",{"@type":"Thing","name":"Experience API","sameAs":["https://en.wikipedia.org/wiki/Experience_API","https://www.wikidata.org/wiki/Q7807728","https://g.co/kg/g/1yw9ktxr8"]},"Joomla",{"@type":"Thing","name":"Joomla","sameAs":["https://en.wikipedia.org/wiki/Joomla","https://www.wikidata.org/wiki/Q13167","https://g.co/kg/m/07qb81"]},"Nginx",{"@type":"Thing","name":"Nginx","sameAs":["https://en.wikipedia.org/wiki/Nginx","https://www.wikidata.org/wiki/Q306144","https://g.co/kg/m/02qft91"]},"MySQL",{"@type":"Thing","name":"MySQL","sameAs":["https://en.wikipedia.org/wiki/MySQL","https://www.wikidata.org/wiki/Q850","https://g.co/kg/m/04y3k"]}],"areaServed":["United States",{"@type":"Country","name":"United States","sameAs":["https://en.wikipedia.org/wiki/United_States","https://www.wikidata.org/wiki/Q30","https://g.co/kg/m/09c7w0"]},"European Union",{"@type":"AdministrativeArea","name":"European Union","sameAs":["https://en.wikipedia.org/wiki/European_Union","https://www.wikidata.org/wiki/Q458","https://g.co/kg/m/0_6t_z8"]},"United Kingdom",{"@type":"Country","name":"United Kingdom","sameAs":["https://en.wikipedia.org/wiki/United_Kingdom","https://www.wikidata.org/wiki/Q145","https://g.co/kg/m/07ssc"]},"Australia",{"@type":"Country","name":"Australia","sameAs":["https://en.wikipedia.org/wiki/Australia","https://www.wikidata.org/wiki/Q408","https://g.co/kg/m/0chghy"]},"Canada",{"@type":"Country","name":"Canada","sameAs":["https://en.wikipedia.org/wiki/Canada","https://www.wikidata.org/wiki/Q16","https://g.co/kg/m/0d060g"]},"Russia",{"@type":"Country","name":"Russia","sameAs":["https://en.wikipedia.org/wiki/Russia","https://www.wikidata.org/wiki/Q159","https://g.co/kg/m/06bnz"]},"China",{"@type":"Country","name":"China","sameAs":["https://en.wikipedia.org/wiki/China","https://www.wikidata.org/wiki/Q148","https://g.co/kg/m/0d05w3"]}],"memberOf":["Mensa International",{"@type":"Organization","name":"Mensa International","sameAs":["https://en.wikipedia.org/wiki/Mensa_International","https://www.wikidata.org/wiki/Q184194","https://g.co/kg/m/0140pf"]},"National Rifle Association",{"@type":"Organization","name":"National Rifle Association","sameAs":["https://en.wikipedia.org/wiki/National_Rifle_Association","https://www.wikidata.org/wiki/Q863259","https://g.co/kg/m/0j6f9"]},"CompTIA",{"@type":"Organization","name":"CompTIA","sameAs":["https://en.wikipedia.org/wiki/CompTIA","https://www.wikidata.org/wiki/Q597534","https://g.co/kg/m/040shq"]},"ISFCE LLC",{"@type":"Organization","name":"ISFCE LLC","sameAs":["https://isfce.com","https://g.co/kg/g/11wxm5r0rg"]}],"hasCredential":[{"@type":"EducationalOccupationalCredential","name":"Joomla 3 Certified Administrator","credentialCategory":"Certification","description":"Administrator Exam is the first available Joomla! certification exam","recognizedBy":{"@type":"Organization","name":"Open Source Matters, Inc.","sameAs":["https://en.wikipedia.org/wiki/Open_Source_Matters,_Inc.","https://g.co/kg/g/11f00wvjhz"]},"url":"https://certification.joomla.org/certified-user-directory/michael-richey","about":["Content management system",{"@type":"Thing","name":"Content management system","sameAs":["https://en.wikipedia.org/wiki/Content_management_system","https://www.wikidata.org/wiki/Q131093","https://g.co/kg/m/0k23c"]},"Web content management system",{"@type":"Thing","name":"Web content management system","sameAs":["https://en.wikipedia.org/wiki/Web_content_management_system","https://www.wikidata.org/wiki/Q45211","https://g.co/kg/m/0615s2"]},"Joomla",{"@type":"Thing","name":"Joomla","sameAs":["https://en.wikipedia.org/wiki/Joomla","https://www.wikidata.org/wiki/Q13167","https://g.co/kg/m/07qb81"]}],"educationalLevel":"expert","image":{"@type":"ImageObject","url":"https://www.richeyweb.com/images/contact/badge.webp","contentUrl":"https://www.richeyweb.com/images/contact/badge.webp","width":{"@type":"QuantitativeValue","value":300,"unitCode":"PX"},"height":{"@type":"QuantitativeValue","value":86,"unitCode":"PX"},"caption":"Joomla 3 Certified Administrator"}},{"@type":"EducationalOccupationalCredential","name":"Certified Computer Examiner","credentialCategory":"Certification","description":"Internationally recognized computer forensics certifiecation","recognizedBy":{"@type":"Organization","name":"ISFCE LLC","sameAs":["https://en.wikipedia.org/wiki/ISFCE_LLC","https://g.co/kg/g/11wxm5r0rg"]},"url":"https://isfce.com/","about":["Digital forensics",{"@type":"Thing","name":"Digital forensics","sameAs":["https://en.wikipedia.org/wiki/Digital_forensics","https://www.wikidata.org/wiki/Q3246940","https://g.co/kg/m/0cnxzfx"]},"Computer forensics",{"@type":"Thing","name":"Computer forensics","sameAs":["https://en.wikipedia.org/wiki/Computer_forensics","https://www.wikidata.org/wiki/Q878553","https://g.co/kg/m/02wxbd"]},"Mobile device forensics",{"@type":"Thing","name":"Mobile device forensics","sameAs":["https://en.wikipedia.org/wiki/Mobile_device_forensics","https://www.wikidata.org/wiki/Q6887097","https://g.co/kg/m/06zp3tp"]},"Network forensics",{"@type":"Thing","name":"Network forensics","sameAs":["https://en.wikipedia.org/wiki/Network_forensics","https://www.wikidata.org/wiki/Q7001032","https://g.co/kg/m/05pb280"]},"Database forensics",{"@type":"Thing","name":"Database forensics","sameAs":["https://en.wikipedia.org/wiki/Database_forensics","https://www.wikidata.org/wiki/Q5227405","https://g.co/kg/m/0cgqsy"]}],"educationalLevel":"expert","image":{"@type":"ImageObject","url":"https://www.richeyweb.com/images/contact/isfce-cce.webp","contentUrl":"https://www.richeyweb.com/images/contact/isfce-cce.webp","width":{"@type":"QuantitativeValue","value":150,"unitCode":"PX"},"height":{"@type":"QuantitativeValue","value":150,"unitCode":"PX"},"caption":"Certified Computer Examiner"}}],"hasOfferCatalog":{"@type":"OfferCatalog","name":"Web Services","itemListElement":[{"@type":"Offer","itemOffered":{"@type":"Service","name":"Hosting"}},{"@type":"Offer","itemOffered":{"@type":"Service","name":"Development"}},{"@type":"Offer","itemOffered":{"@type":"Service","name":"Search Engine Optimization"}}]}},{"@type":"WebSite","@id":"https://www.richeyweb.com/#website","url":"https://www.richeyweb.com/","name":"RicheyWeb","publisher":{"@id":"https://www.richeyweb.com/#organization"},"potentialAction":{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https://www.richeyweb.com/search?q={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string","valueMaxLength":256,"valueMinLength":2,"valuePattern":"^[A-Za-z0-9\\s]+$"}},"creator":{"@id":"https://www.richeyweb.com/#organization"},"copyrightHolder":{"@id":"https://www.richeyweb.com/#organization"}},{"@type":"WebPage","@id":"https://www.richeyweb.com/blog/hosting/mastering-the-html-head-in-joomla#webpage","url":"https://www.richeyweb.com/blog/hosting/mastering-the-html-head-in-joomla","name":"Mastering the HTML head in Joomla","description":"Optimize your Joomla 5 site's HTML head for SEO, favicons, and social sharing with expert tips and plugins from RicheyWeb. Boost visibility now!","isPartOf":{"@id":"https://www.richeyweb.com/#website"},"about":{"@id":"https://www.richeyweb.com/#organization"},"inLanguage":"en-GB"},{"@type":"Article","image":{"@type":"ImageObject","url":"https://www.richeyweb.com/images/articles/metarobots/system-metarobots.webp","contentUrl":"https://www.richeyweb.com/images/articles/metarobots/system-metarobots.webp","width":{"@type":"QuantitativeValue","value":888,"unitCode":"PX"},"height":{"@type":"QuantitativeValue","value":499,"unitCode":"PX"},"caption":"Mastering the HTML  in Joomla","representativeOfPage":true},"headline":"Mastering the HTML head in Joomla","description":"Optimize your Joomla 5 site's HTML head for SEO, favicons, and social sharing with expert tips and plugins from RicheyWeb. Boost visibility now!","author":{"@type":"Person","name":"Michael Richey","url":"https://www.richeyweb.com/contact-us","@id":"https://www.richeyweb.com/contact-us#person"},"datePublished":"2025-08-21T00:00:00+00:00","dateModified":"2026-03-30T00:00:00+00:00","about":["Joomla",{"@type":"Thing","name":"Joomla","sameAs":["https://en.wikipedia.org/wiki/Joomla","https://www.wikidata.org/wiki/Q13167","https://g.co/kg/m/07qb81"]},"Search engine optimization",{"@type":"Thing","name":"Search engine optimization","sameAs":["https://en.wikipedia.org/wiki/Search_engine_optimization","https://www.wikidata.org/wiki/Q180711","https://g.co/kg/m/019qb_"]},"HTML",{"@type":"Thing","name":"HTML","sameAs":["https://en.wikipedia.org/wiki/HTML","https://www.wikidata.org/wiki/Q8811","https://g.co/kg/m/03g20"]},"Header",{"@type":"Thing","name":"Header","sameAs":["https://en.wikipedia.org/wiki/Header_(computing)","https://www.wikidata.org/wiki/Q747318","https://g.co/kg/m/02dnj_"]}],"mentions":["OpenGraph","Twitter",{"@type":"Corporation","name":"Twitter","sameAs":["https://en.wikipedia.org/wiki/Twitter,_Inc.","https://www.wikidata.org/wiki/Q918","https://g.co/kg/m/0hn1vcg"]},"Facebook",{"@type":"Thing","name":"Facebook","sameAs":["https://en.wikipedia.org/wiki/Facebook","https://www.wikidata.org/wiki/Q355","https://g.co/kg/m/02y1vz"]},"Meta",{"@type":"Organization","name":"Meta","sameAs":["https://en.wikipedia.org/wiki/Meta_Platforms","https://www.wikidata.org/wiki/Q225827","https://g.co/kg/m/0hmyfsv"]},"Google",{"@type":"Organization","name":"Google","sameAs":["https://en.wikipedia.org/wiki/Google","https://www.wikidata.org/wiki/Q95","https://g.co/kg/m/045c7b"]},"Bootstrap",{"@type":"Thing","name":"Bootstrap","sameAs":["https://en.wikipedia.org/wiki/Bootstrap_(front-end_framework)","https://g.co/kg/m/0j671ln"]},"LinkedIn",{"@type":"Thing","name":"LinkedIn","sameAs":["https://en.wikipedia.org/wiki/LinkedIn","https://www.wikidata.org/wiki/Q213660","https://g.co/kg/m/03vgrr"]},"Fields - XMLForm",{"@type":"Thing","@id":"https://www.richeyweb.com/software/joomla/plugins/fields-xmlform/#softwareapplication","name":"Fields - XMLForm","sameAs":["https://extensions.joomla.org/extension/authoring-a-content/custom-fields/fields-xmlform/","https://en.wikipedia.org/wiki/Fields_-_XMLForm"]},"System - Link Canonical",{"@type":"Thing","@id":"https://www.richeyweb.com/software/joomla/plugins/system-link-canonical/#softwareapplication","name":"System - Link Canonical","sameAs":["https://extensions.joomla.org/extension/site-management/seo-a-metadata/system-link-canonical/","https://en.wikipedia.org/wiki/System_-_Link_Canonical"]},"System - Head Tag",{"@type":"Thing","@id":"https://www.richeyweb.com/software/joomla/plugins/system-headtag/#softwareapplication","name":"System - Head Tag","sameAs":["https://extensions.joomla.org/extension/core-enhancements/coding-a-scripts-integration/headtag/","https://en.wikipedia.org/wiki/System_-_Head_Tag"]},"System - Meta Robots",{"@type":"Thing","@id":"https://www.richeyweb.com/software/joomla/plugins/system-meta-robots/#softwareapplication","name":"System - Meta Robots","sameAs":["https://extensions.joomla.org/extension/site-management/seo-a-metadata/meta-robots/","https://en.wikipedia.org/wiki/System_-_Meta_Robots"]},{"@type":"Article","@id":"https://www.richeyweb.com/white-hat-seo/white-hat-seo#article","url":"https://www.richeyweb.com/white-hat-seo/white-hat-seo","name":"White-Hat SEO","headline":"White-Hat SEO","author":{"@type":"Person","name":"Michael Richey","url":"https://www.richeyweb.com/contact-us","@id":"https://www.richeyweb.com/contact-us#person"}},{"@type":"Article","@id":"https://www.richeyweb.com/test-article#article","url":"https://www.richeyweb.com/test-article","name":"Shader BG Test","headline":"Shader BG Test","author":{"@type":"Person","name":"Michael Richey","url":"https://www.richeyweb.com/contact-us","@id":"https://www.richeyweb.com/contact-us#person"}},{"@type":"Article","@id":"https://www.richeyweb.com/white-hat-seo/technical-seo#article","url":"https://www.richeyweb.com/white-hat-seo/technical-seo","name":"Technical SEO","headline":"Technical SEO","image":{"@type":"ImageObject","url":"https://www.richeyweb.com/images/articles/seo/technical-seo/technical-seo-v2.webp","contentUrl":"https://www.richeyweb.com/images/articles/seo/technical-seo/technical-seo-v2.webp","width":{"@type":"QuantitativeValue","value":1280,"unitCode":"PX"},"height":{"@type":"QuantitativeValue","value":720,"unitCode":"PX"},"caption":"Technical SEO"},"author":{"@type":"Person","name":"Michael Richey","url":"https://www.richeyweb.com/contact-us","@id":"https://www.richeyweb.com/contact-us#person"}},{"@type":"Article","@id":"https://www.richeyweb.com/blog/personal/why-my-joomla-extensions-are-free#article","url":"https://www.richeyweb.com/blog/personal/why-my-joomla-extensions-are-free","name":"Why My Joomla Extensions Are Free","headline":"Why My Joomla Extensions Are Free","image":{"@type":"ImageObject","url":"https://www.richeyweb.com/images/articles/why-my-joomla-extensions-are-free/free-extensions-kinison.webp","contentUrl":"https://www.richeyweb.com/images/articles/why-my-joomla-extensions-are-free/free-extensions-kinison.webp","width":{"@type":"QuantitativeValue","value":666,"unitCode":"PX"},"height":{"@type":"QuantitativeValue","value":374,"unitCode":"PX"},"caption":"Why My Joomla Extensions Are Free"},"author":{"@type":"Person","name":"Michael Richey","url":"https://www.richeyweb.com/contact-us","@id":"https://www.richeyweb.com/contact-us#person"}},{"@type":"Article","@id":"https://www.richeyweb.com/blog/development/server-timing-for-geoip-data-delivery-to-achieve-gdpr-compliance#article","url":"https://www.richeyweb.com/blog/development/server-timing-for-geoip-data-delivery-to-achieve-gdpr-compliance","name":"Server-Timing for GeoIP Data Delivery to Achieve GDPR Compliance","headline":"Server-Timing for GeoIP Data Delivery to Achieve GDPR Compliance","image":{"@type":"ImageObject","url":"https://www.richeyweb.com/images/articles/geoip-coming-soon/geoip-coming-soon.webp","contentUrl":"https://www.richeyweb.com/images/articles/geoip-coming-soon/geoip-coming-soon.webp","width":{"@type":"QuantitativeValue","value":508,"unitCode":"PX"},"height":{"@type":"QuantitativeValue","value":285,"unitCode":"PX"},"caption":"Server-Timing for GeoIP Data Delivery to Achieve GDPR Compliance"},"author":{"@type":"Person","name":"Michael Richey","url":"https://www.richeyweb.com/contact-us","@id":"https://www.richeyweb.com/contact-us#person"}},{"@type":"Article","@id":"https://www.richeyweb.com/blog/development/problems-turn-into-features#article","url":"https://www.richeyweb.com/blog/development/problems-turn-into-features","name":"Problems Turn Into Features","headline":"Problems Turn Into Features","image":{"@type":"ImageObject","url":"https://www.richeyweb.com/images/articles/problems-turn-into-features/problems-turn-into-features.webp","contentUrl":"https://www.richeyweb.com/images/articles/problems-turn-into-features/problems-turn-into-features.webp","width":{"@type":"QuantitativeValue","value":899,"unitCode":"PX"},"height":{"@type":"QuantitativeValue","value":505,"unitCode":"PX"},"caption":"Problems Turn Into Features"},"author":{"@type":"Person","name":"Michael Richey","url":"https://www.richeyweb.com/contact-us","@id":"https://www.richeyweb.com/contact-us#person"}},{"@type":"Article","@id":"https://www.richeyweb.com/blog/development/one-sh-tty-email-that-made-me-finally-do-something-about-spam#article","url":"https://www.richeyweb.com/blog/development/one-sh-tty-email-that-made-me-finally-do-something-about-spam","name":"One Sh*tty Email That Made Me Finally Do Something About Spam","headline":"One Sh*tty Email That Made Me Finally Do Something About Spam","image":{"@type":"ImageObject","url":"https://www.richeyweb.com/images/articles/plg_contact_validemail/validemail.webp","contentUrl":"https://www.richeyweb.com/images/articles/plg_contact_validemail/validemail.webp","width":{"@type":"QuantitativeValue","value":540,"unitCode":"PX"},"height":{"@type":"QuantitativeValue","value":302,"unitCode":"PX"},"caption":"One Sh*tty Email That Made Me Finally Do Something About Spam"},"author":{"@type":"Person","name":"Michael Richey","url":"https://www.richeyweb.com/contact-us","@id":"https://www.richeyweb.com/contact-us#person"}},{"@type":"Article","@id":"https://www.richeyweb.com/blog/development/another-canonical-url-demon-slain#article","url":"https://www.richeyweb.com/blog/development/another-canonical-url-demon-slain","name":"Another Canonical URL Demon Slain","headline":"Another Canonical URL Demon Slain","image":{"@type":"ImageObject","url":"https://www.richeyweb.com/images/articles/joomlas-canonical-url-chaos/canonical-url-demon.webp","contentUrl":"https://www.richeyweb.com/images/articles/joomlas-canonical-url-chaos/canonical-url-demon.webp","width":{"@type":"QuantitativeValue","value":519,"unitCode":"PX"},"height":{"@type":"QuantitativeValue","value":291,"unitCode":"PX"},"caption":"Another Canonical URL Demon Slain"},"author":{"@type":"Person","name":"Michael Richey","url":"https://www.richeyweb.com/contact-us","@id":"https://www.richeyweb.com/contact-us#person"}},{"@type":"Article","@id":"https://www.richeyweb.com/blog/development/gpc-dnt-do-not-tracks-toothless-twin#article","url":"https://www.richeyweb.com/blog/development/gpc-dnt-do-not-tracks-toothless-twin","name":"GPC: DNT/Do Not Track’s Toothless Twin","headline":"GPC: DNT/Do Not Track’s Toothless Twin","image":{"@type":"ImageObject","url":"https://www.richeyweb.com/images/articles/dnt/dnt-headstone-thumbnail.webp","contentUrl":"https://www.richeyweb.com/images/articles/dnt/dnt-headstone-thumbnail.webp","width":{"@type":"QuantitativeValue","value":513,"unitCode":"PX"},"height":{"@type":"QuantitativeValue","value":288,"unitCode":"PX"},"caption":"GPC: DNT/Do Not Track’s Toothless Twin"},"author":{"@type":"Person","name":"Michael Richey","url":"https://www.richeyweb.com/contact-us","@id":"https://www.richeyweb.com/contact-us#person"}},{"@type":"Article","@id":"https://www.richeyweb.com/joomla-techniques/building-a-better-joomla#article","url":"https://www.richeyweb.com/joomla-techniques/building-a-better-joomla","name":"Building a better Joomla","headline":"Building a better Joomla","author":{"@type":"Person","name":"Michael Richey","url":"https://www.richeyweb.com/contact-us","@id":"https://www.richeyweb.com/contact-us#person"}}],"@id":"https://www.richeyweb.com/blog/hosting/mastering-the-html-head-in-joomla#article","isPartOf":{"@id":"https://www.richeyweb.com/blog/hosting/mastering-the-html-head-in-joomla#webpage"},"publisher":{"@id":"https://www.richeyweb.com/#organization"},"citation":[{"@type":"CreativeWork","@id":"https://extensions.joomla.org/extension/route-66/#creativework","url":"https://extensions.joomla.org/extension/route-66/"},{"@type":"CreativeWork","@id":"https://www.richeyweb.com/software/joomla/plugins/fields-xmlform#softwareapplication","url":"https://www.richeyweb.com/software/joomla/plugins/fields-xmlform","name":"Fields - XMLForm"},{"@type":"CreativeWork","@id":"https://www.richeyweb.com/software/joomla/plugins/system-link-canonical#softwareapplication","url":"https://www.richeyweb.com/software/joomla/plugins/system-link-canonical","name":"System - Link Canonical"},{"@type":"CreativeWork","@id":"https://www.richeyweb.com/software/joomla/plugins/system-headtag#softwareapplication","url":"https://www.richeyweb.com/software/joomla/plugins/system-headtag","name":"System - Head Tag"},{"@type":"CreativeWork","@id":"https://www.richeyweb.com/software/joomla/plugins/system-meta-robots#softwareapplication","url":"https://www.richeyweb.com/software/joomla/plugins/system-meta-robots","name":"System - Meta Robots"},{"@type":"CreativeWork","@id":"https://ahrefs.com/blog/meta-robots/#creativework","url":"https://ahrefs.com/blog/meta-robots/"},{"@type":"CreativeWork","@id":"https://rankmath.com/kb/robots-meta-tag-vs-x-robots/#creativework","url":"https://rankmath.com/kb/robots-meta-tag-vs-x-robots/"},{"@type":"CreativeWork","@id":"https://www.richeyweb.com/software/examples/subform-xmlform/field-subform-xmlform-packages#article","url":"https://www.richeyweb.com/software/examples/subform-xmlform/field-subform-xmlform-packages","name":"Field - Subform/XMLForm Packages"},{"@type":"CreativeWork","@id":"index.php?Itemid=176#creativework","url":"index.php?Itemid=176"}],"keywords":"Joomla 5, SEO, performance, social media presence, metadata, OpenGraph, Twitter Card tags, Route 66, RicheyWeb’s Fields - XMLForm, System - Link Canonical, System - Meta Robots, technical SEO, crawling, indexing, ranking, charset, viewport, robots tag, canonical tags, sitemap, RSS links, favicon setup, social media metadata, plugin simplification, advanced directives, noindex, nofollow, nosnippet, unavailable_after, title element, description meta tag, HTML head icon tags, favicons, device-specific icons, branding, modern Joomla 5 sites, social tags, OpenGraph tags, Twitter Card tags, Facebook, LinkedIn, shared links, click-through rates, Route66 plugin, Fields - XMLForm plugin, System - Link Canonical plugin, System - Meta Robots plugin, essential head links, canonical link, sitemap link, RSS feed link, search link, Joomla development, SEO solutions","articleSection":"Hosting","url":"https://www.richeyweb.com/blog/hosting/mastering-the-html-head-in-joomla","hasPart":[{"@id":"https://www.richeyweb.com/blog/hosting/mastering-the-html-head-in-joomla#articleindex-toc-the-role-of-the-head-in-technical-seo_2_1"},{"@id":"https://www.richeyweb.com/blog/hosting/mastering-the-html-head-in-joomla#articleindex-toc-meta-robots_3_2"},{"@id":"https://www.richeyweb.com/blog/hosting/mastering-the-html-head-in-joomla#articleindex-toc-canonical-urls_3_3"},{"@id":"https://www.richeyweb.com/blog/hosting/mastering-the-html-head-in-joomla#articleindex-toc-bare-minimum-html-head_2_4"},{"@id":"https://www.richeyweb.com/blog/hosting/mastering-the-html-head-in-joomla#articleindex-toc-html-head-icon-tags_2_5"},{"@id":"https://www.richeyweb.com/blog/hosting/mastering-the-html-head-in-joomla#articleindex-toc-scripts-and-styles_2_6"},{"@id":"https://www.richeyweb.com/blog/hosting/mastering-the-html-head-in-joomla#articleindex-toc-social-tags-for-html-head_2_7"},{"@id":"https://www.richeyweb.com/blog/hosting/mastering-the-html-head-in-joomla#articleindex-toc-why-social-tags-matter-for-joomla_2_8"},{"@id":"https://www.richeyweb.com/blog/hosting/mastering-the-html-head-in-joomla#articleindex-toc-html-head-links_2_9"},{"@id":"https://www.richeyweb.com/blog/hosting/mastering-the-html-head-in-joomla#articleindex-toc-joomla-is-extremely-capable_2_10"}]},{"@id":"https://www.richeyweb.com/blog/hosting/mastering-the-html-head-in-joomla#articleindex","@type":"ItemList","name":"Mastering the HTML head in Joomla","numberOfItems":10,"itemListElement":[{"@type":"ListItem","position":1,"item":{"@type":"WPHeader","@id":"https://www.richeyweb.com/blog/hosting/mastering-the-html-head-in-joomla#articleindex-toc-the-role-of-the-head-in-technical-seo_2_1","name":"The Role of the <head> in Technical SEO","url":"https://www.richeyweb.com/blog/hosting/mastering-the-html-head-in-joomla#toc-the-role-of-the-head-in-technical-seo_2_1"}},{"@type":"ListItem","position":2,"item":{"@type":"WPHeader","@id":"https://www.richeyweb.com/blog/hosting/mastering-the-html-head-in-joomla#articleindex-toc-meta-robots_3_2","name":"Meta Robots","url":"https://www.richeyweb.com/blog/hosting/mastering-the-html-head-in-joomla#toc-meta-robots_3_2"}},{"@type":"ListItem","position":3,"item":{"@type":"WPHeader","@id":"https://www.richeyweb.com/blog/hosting/mastering-the-html-head-in-joomla#articleindex-toc-canonical-urls_3_3","name":"Canonical URLs","url":"https://www.richeyweb.com/blog/hosting/mastering-the-html-head-in-joomla#toc-canonical-urls_3_3"}},{"@type":"ListItem","position":4,"item":{"@type":"WPHeader","@id":"https://www.richeyweb.com/blog/hosting/mastering-the-html-head-in-joomla#articleindex-toc-bare-minimum-html-head_2_4","name":"Bare Minimum HTML <head>","url":"https://www.richeyweb.com/blog/hosting/mastering-the-html-head-in-joomla#toc-bare-minimum-html-head_2_4"}},{"@type":"ListItem","position":5,"item":{"@type":"WPHeader","@id":"https://www.richeyweb.com/blog/hosting/mastering-the-html-head-in-joomla#articleindex-toc-html-head-icon-tags_2_5","name":"HTML Head Icon Tags","url":"https://www.richeyweb.com/blog/hosting/mastering-the-html-head-in-joomla#toc-html-head-icon-tags_2_5"}},{"@type":"ListItem","position":6,"item":{"@type":"WPHeader","@id":"https://www.richeyweb.com/blog/hosting/mastering-the-html-head-in-joomla#articleindex-toc-scripts-and-styles_2_6","name":"Scripts and Styles","url":"https://www.richeyweb.com/blog/hosting/mastering-the-html-head-in-joomla#toc-scripts-and-styles_2_6"}},{"@type":"ListItem","position":7,"item":{"@type":"WPHeader","@id":"https://www.richeyweb.com/blog/hosting/mastering-the-html-head-in-joomla#articleindex-toc-social-tags-for-html-head_2_7","name":"Social Tags for HTML Head","url":"https://www.richeyweb.com/blog/hosting/mastering-the-html-head-in-joomla#toc-social-tags-for-html-head_2_7"}},{"@type":"ListItem","position":8,"item":{"@type":"WPHeader","@id":"https://www.richeyweb.com/blog/hosting/mastering-the-html-head-in-joomla#articleindex-toc-why-social-tags-matter-for-joomla_2_8","name":"Why Social Tags Matter for Joomla","url":"https://www.richeyweb.com/blog/hosting/mastering-the-html-head-in-joomla#toc-why-social-tags-matter-for-joomla_2_8"}},{"@type":"ListItem","position":9,"item":{"@type":"WPHeader","@id":"https://www.richeyweb.com/blog/hosting/mastering-the-html-head-in-joomla#articleindex-toc-html-head-links_2_9","name":"HTML Head Links","url":"https://www.richeyweb.com/blog/hosting/mastering-the-html-head-in-joomla#toc-html-head-links_2_9"}},{"@type":"ListItem","position":10,"item":{"@type":"WPHeader","@id":"https://www.richeyweb.com/blog/hosting/mastering-the-html-head-in-joomla#articleindex-toc-joomla-is-extremely-capable_2_10","name":"Joomla is Extremely Capable","url":"https://www.richeyweb.com/blog/hosting/mastering-the-html-head-in-joomla#toc-joomla-is-extremely-capable_2_10"}}]}]}
```
