🚀 LEVEL UP TO SENIOR:Unlock 500+ Advanced Practical Challenges & Exercises.
🎓 COURSERA PARTNER:Earn professional Google, Meta, and IBM certificates to supercharge your resume.
REFERENCEhtml

html Documentation

LOADING ENGINE...

META Tags

AI & DATA SCIENCE // meta-tags

Meta tags are a family of <meta name="..." content="..."> elements in <head> that communicate metadata to browsers, search engines, and other tools — beyond the single <meta> element's basic syntax.

Syntax

<meta name="description" content="Page summary for search results.">
<meta name="robots" content="index, follow">
<meta name="author" content="Jane Doe">

Deep Dive Course

Beyond the required `charset` and `viewport` tags, a handful of **`<meta name="...">`** tags matter specifically for SEO and content control: **`description`** supplies the snippet text search engines often display, **`robots`** controls indexing behavior (`index`/`noindex`, `follow`/`nofollow`), and **`author`** simply credits a page's writer. Search engines treat some meta tags (like `keywords`) as effectively ignored today after years of spam abuse, while others (`description`, `robots`) remain genuinely influential.

1Understanding META Tags

Beyond the required charset and viewport tags, a handful of `<meta name="...">` tags matter specifically for SEO and content control: `description` supplies the snippet text search engines often display, `robots` controls indexing behavior (index/noindex, follow/nofollow), and `author` simply credits a page's writer. Search engines treat some meta tags (like keywords) as effectively ignored today after years of spam abuse, while others (description, robots) remain genuinely influential.

💡

The meta keywords tag is a relic — major search engines stopped using it for ranking decades ago after it was widely abused with irrelevant keyword stuffing. Don't bother maintaining it.

editor.html
<head>
  <meta name="description" content="Free interactive HTML, CSS, and JavaScript tutorials.">
  <meta name="robots" content="index, follow">
</head>
localhost:3000

2Practical Example

Here is a real-world application of META Tags showing how it is used in production HTML.

editor.html
<!-- Preventing indexing of a thank-you/checkout confirmation page -->
<meta name="robots" content="noindex, nofollow">
localhost:3000

3Best Practices

Follow these guidelines when working with META Tags:

1. Write a unique, compelling meta description per page (roughly 150-160 characters)

2. Use meta robots content="noindex" deliberately for pages you don't want search engines to index (like internal search results)

3. Skip the meta keywords tag entirely — it has no SEO effect in modern search engines

⚠️

Tip: The meta keywords tag is a relic — major search engines stopped using it for ranking decades ago after it was widely abused with irrelevant keyword stuffing. Don't bother maintaining it.

editor.html
<head>
  <meta name="description" content="Free interactive HTML, CSS, and JavaScript tutorials.">
  <meta name="robots" content="index, follow">
</head>
localhost:3000

Examples

Example 01Basic Usage
<head>
  <meta name="description" content="Free interactive HTML, CSS, and JavaScript tutorials.">
  <meta name="robots" content="index, follow">
</head>
Example 02Advanced Example
<!-- Preventing indexing of a thank-you/checkout confirmation page -->
<meta name="robots" content="noindex, nofollow">

Best Practices

  • Write a unique, compelling meta description per page (roughly 150-160 characters)
  • Use meta robots content="noindex" deliberately for pages you don't want search engines to index (like internal search results)
  • Skip the meta keywords tag entirely — it has no SEO effect in modern search engines

Interview Question

Does the meta keywords tag still influence Google search rankings today?

Hint: Think about how this tag was historically abused.

No — Google has publicly stated for many years that it ignores the meta keywords tag entirely for ranking purposes, because it was so heavily abused with irrelevant, stuffed keywords in the early web that it stopped being a reliable quality signal. Modern SEO effort is far better spent on a genuinely descriptive <title>, a compelling meta description, and quality content and headings, none of which can be gamed as easily.

Exercises

EasyPractice using META Tags in a real scenario.
View Solution
<head>
  <meta name="description" content="Free interactive HTML, CSS, and JavaScript tutorials.">
  <meta name="robots" content="index, follow">
</head>

Frequently Asked Questions

Does the meta keywords tag still influence Google search rankings today?

No — Google has publicly stated for many years that it ignores the meta keywords tag entirely for ranking purposes, because it was so heavily abused with irrelevant, stuffed keywords in the early web that it stopped being a reliable quality signal. Modern SEO effort is far better spent on a genuinely descriptive , a compelling meta description, and quality content and headings, none of which can be gamed as easily.</p></div></details></div></div><div class="mt-12 pt-8 border-t-4 border-black text-center"><h3 class="font-black uppercase text-xl mb-4">Related Functions</h3><div class="flex flex-wrap justify-center gap-3"><span class="bg-gray-200 text-black px-4 py-2 font-mono font-bold border-2 border-black shadow-[3px_3px_0px_0px_rgba(0,0,0,1)] hover:bg-brand-lime transition-colors cursor-pointer">meta-tag</span><span class="bg-gray-200 text-black px-4 py-2 font-mono font-bold border-2 border-black shadow-[3px_3px_0px_0px_rgba(0,0,0,1)] hover:bg-brand-lime transition-colors cursor-pointer">Open Graph</span><span class="bg-gray-200 text-black px-4 py-2 font-mono font-bold border-2 border-black shadow-[3px_3px_0px_0px_rgba(0,0,0,1)] hover:bg-brand-lime transition-colors cursor-pointer">Twitter Cards</span></div></div></div></div></div><!--$--><!--/$--></div></div></div></div></main></div><footer class="bg-gray-800 text-white p-4 text-center group w-full"><h4 class="text-2xl font-bold my-4 hidden lg:block">Web Development Course</h4><div class="transition-all duration-300"><div class="bg-gray-900 text-white py-6 text-left"><div class="container mx-auto px-6 lg:px-20 border-b border-gray-800 pb-2 mb-8 flex justify-center"><div class="w-full max-w-md my-8 p-6 bg-gray-900 border border-gray-800 rounded-xl shadow-2xl relative overflow-hidden"><div class="absolute top-0 left-1/2 -translate-x-1/2 w-3/4 h-1 bg-gradient-to-r from-transparent via-blue-500 to-transparent opacity-50"></div><div class="text-left mb-6"><h3 class="text-2xl font-bold text-white mb-2 tracking-tight">Newsletter</h3><p class="text-gray-400 text-sm">Get the latest news, tutorials, and resources on web development delivered straight to your inbox. </p></div><form class="flex flex-col gap-3"><div class="relative"><input type="email" placeholder="you@email.com" class="w-full px-4 py-3 bg-gray-800 border border-gray-700 rounded-lg text-white placeholder-gray-500 focus:outline-none focus:border-blue-500 focus:ring-1 focus:ring-blue-500 transition-all disabled:opacity-50" required="" value=""/></div><button type="submit" class="w-full px-4 py-3 font-semibold text-white bg-blue-600 hover:bg-blue-700 rounded-lg transition-colors disabled:opacity-50 disabled:cursor-not-allowed flex items-center justify-center gap-2"><span>Subscribe Now!</span></button></form></div></div><div class="container mx-auto px-6 lg:px-20"><div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-8"><div><h3 class="text-xl font-semibold mb-4">Important Links</h3><ul class="space-y-2"><li><a class="hover:underline text-gray-300 hover:text-white transition-colors" href="/about-us">About Us</a></li><li><a class="hover:underline text-gray-300 hover:text-white transition-colors" href="/blog">Blog</a></li><li><a class="hover:underline text-gray-300 hover:text-white transition-colors" href="/links">Links</a></li><li><a class="hover:underline text-gray-300 hover:text-white transition-colors" href="/courses">Courses</a></li><li><a class="hover:underline text-gray-300 hover:text-white transition-colors" href="/bootcamp/html">Projects</a></li><li><a class="hover:underline text-gray-300 hover:text-white transition-colors" href="/contact">Contact</a></li><li><a class="hover:underline text-gray-300 hover:text-white transition-colors" href="/site-map">Sitemap</a></li></ul></div><div><h3 class="text-xl font-semibold mb-4">Course Categories</h3><ul class="space-y-2"><li><a class="hover:underline text-gray-300 hover:text-white transition-colors" href="/courses/html">HTML Course</a></li><li><a class="hover:underline text-gray-300 hover:text-white transition-colors" href="/courses/css">CSS Course</a></li><li><a class="hover:underline text-gray-300 hover:text-white transition-colors" href="/courses/javascript">Learn JavaScript</a></li><li><a class="hover:underline text-gray-300 hover:text-white transition-colors" href="/courses/frontend/react">React Framework</a></li><li><a class="hover:underline text-gray-300 hover:text-white transition-colors" href="/courses/python">Python Course</a></li><li><a class="hover:underline text-gray-300 hover:text-white transition-colors" href="/courses/cloud/aws">AWS Cloud</a></li><li><a class="hover:underline text-gray-300 hover:text-white transition-colors" href="/courses/artificialintelligence/foundations">AI Foundations</a></li></ul></div><div><h3 class="text-xl font-semibold mb-4">Follow Us</h3><div class="flex gap-4 mb-4"><a href="https://facebook.com" target="_blank" rel="noopener noreferrer" aria-label="Facebook" class="hover:text-blue-500 transition-all"><span class="sr-only">Facebook</span><svg xmlns="http://www.w3.org/2000/svg" class="h-8 w-8 fill-current" viewBox="0 0 24 24"><path d="M22.675 0H1.325C.593 0 0 .592 0 1.324v21.351C0 23.406.593 24 1.325 24H12.82v-9.294H9.692v-3.622h3.129V8.413c0-3.1 1.894-4.788 4.662-4.788 1.325 0 2.465.099 2.797.143v3.24h-1.92c-1.506 0-1.796.715-1.796 1.763v2.31h3.588l-.467 3.622h-3.121V24h6.116c.732 0 1.324-.594 1.324-1.325V1.324C24 .592 23.407 0 22.675 0z"></path></svg></a><a href="https://www.linkedin.com/company/codesyllabuscom" target="_blank" rel="noopener noreferrer" aria-label="LinkedIn" class="hover:text-blue-500 transition-all"><span class="sr-only">LinkedIn</span><svg xmlns="http://www.w3.org/2000/svg" class="h-8 w-8 fill-current" viewBox="0 0 24 24"><path d="M20.447 20.452h-3.554v-5.569c0-1.328-.027-3.037-1.852-3.037-1.853 0-2.136 1.445-2.136 2.939v5.667H9.351V9h3.414v1.561h.046c.477-.9 1.637-1.85 3.37-1.85 3.601 0 4.267 2.37 4.267 5.455v6.286zM5.337 7.433c-1.144 0-2.063-.926-2.063-2.065 0-1.138.92-2.063 2.063-2.063 1.14 0 2.064.925 2.064 2.063 0 1.139-.925 2.065-2.064 2.065zm1.782 13.019H3.555V9h3.564v11.452zM22.225 0H1.771C.792 0 0 .774 0 1.729v20.542C0 23.227.792 24 1.771 24h20.451C23.2 24 24 23.227 24 22.271V1.729C24 .774 23.2 0 22.225 0z"></path></svg></a><a href="https://www.instagram.com/codesyllabus_/" target="_blank" rel="noopener noreferrer" aria-label="Instagram" class="hover:text-pink-500 transition-all"><span class="sr-only">Instagram</span><svg xmlns="http://www.w3.org/2000/svg" class="h-8 w-8 fill-current" viewBox="0 0 24 24"><path d="M12 2.163c3.204 0 3.584.012 4.85.07 3.252.148 4.771 1.691 4.919 4.919.058 1.265.069 1.645.069 4.849 0 3.205-.012 3.584-.069 4.849-.149 3.225-1.664 4.771-4.919 4.919-1.266.058-1.644.07-4.85.07-3.204 0-3.584-.012-4.849-.07-3.26-.149-4.771-1.699-4.919-4.92-.058-1.265-.07-1.644-.07-4.849 0-3.204.013-3.583.07-4.849.149-3.227 1.664-4.771 4.919-4.919 1.266-.057 1.645-.069 4.849-.069zm0-2.163c-3.259 0-3.667.014-4.947.072-4.358.2-6.78 2.618-6.98 6.98-.059 1.281-.073 1.689-.073 4.948 0 3.259.014 3.668.072 4.948.2 4.358 2.618 6.78 6.98 6.98 1.281.058 1.689.072 4.948.072 3.259 0 3.668-.014 4.948-.072 4.354-.2 6.782-2.618 6.979-6.98.059-1.28.073-1.689.073-4.948 0-3.259-.014-3.667-.072-4.947-.196-4.354-2.617-6.78-6.979-6.98-1.281-.059-1.69-.073-4.949-.073zm0 5.838c-3.403 0-6.162 2.759-6.162 6.162s2.759 6.163 6.162 6.163 6.162-2.759 6.162-6.163-2.759-6.162-6.162-6.162zm0 10.162c-2.209 0-4-1.79-4-4 0-2.209 1.791-4 4-4s4 1.791 4 4c0 2.21-1.791 4-4 4zm6.406-11.845c-.796 0-1.441.645-1.441 1.44s.645 1.44 1.441 1.44c.795 0 1.439-.645 1.439-1.44s-.644-1.44-1.439-1.44z"></path></svg></a></div></div><div><h3 class="text-xl font-semibold mb-4">Our Commitment to Quality</h3><p class="text-sm text-gray-300 leading-relaxed">Our mission is to provide accessible, high-quality web development education. All tutorials are crafted by seasoned industry professionals and rigorously reviewed for accuracy. We base our content on official documentation from sources like the Mozilla Developer Network (MDN) and W3C standards to ensure you learn the most current and correct information.</p></div></div></div></div></div><div class="container mx-auto text-center py-4 border-t border-gray-700 mt-4"><p class="text-xs text-gray-500">© 2025 Code Syllabus. All rights reserved.<a class="text-blue-400 hover:underline ml-4" href="/Privacy-Policy">Privacy Policy</a><a class="text-blue-400 hover:underline ml-4" href="/Data-Protection">Data Protection</a><a class="text-blue-400 hover:underline ml-4" href="/terms-of-use">Terms of Use</a></p></div></footer><script src="/_next/static/immutable/chunks/3zfczckyp8n3x.js" id="_R_" async=""></script><script>(self.__next_f=self.__next_f||[]).push([0])</script><script>self.__next_f.push([1,"1:\"$Sreact.fragment\"\n2:I[353882,[\"/_next/static/immutable/chunks/0x-9rc1bm-510.js\",\"/_next/static/immutable/chunks/1fs6zsjmkbi83.js\",\"/_next/static/immutable/chunks/1b90-pdlko2_2.js\",\"/_next/static/immutable/chunks/39zcstwudliuq.js\",\"/_next/static/immutable/chunks/01yfk-nchzd5e.js\"],\"default\"]\n3:I[396068,[\"/_next/static/immutable/chunks/0x-9rc1bm-510.js\",\"/_next/static/immutable/chunks/1fs6zsjmkbi83.js\",\"/_next/static/immutable/chunks/1b90-pdlko2_2.js\",\"/_next/static/immutable/chunks/39zcstwudliuq.js\",\"/_next/static/immutable/chunks/01yfk-nchzd5e.js\"],\"default\"]\n4:I[370186,[\"/_next/static/immutable/chunks/0x-9rc1bm-510.js\",\"/_next/static/immutable/chunks/1fs6zsjmkbi83.js\",\"/_next/static/immutable/chunks/1b90-pdlko2_2.js\",\"/_next/static/immutable/chunks/39zcstwudliuq.js\",\"/_next/static/immutable/chunks/01yfk-nchzd5e.js\"],\"default\"]\n5:I[372178,[\"/_next/static/immutable/chunks/0x-9rc1bm-510.js\",\"/_next/static/immutable/chunks/1fs6zsjmkbi83.js\",\"/_next/static/immutable/chunks/1b90-pdlko2_2.js\",\"/_next/static/immutable/chunks/39zcstwudliuq.js\",\"/_next/static/immutable/chunks/01yfk-nchzd5e.js\"],\"default\"]\n6:I[646208,[\"/_next/static/immutable/chunks/0x-9rc1bm-510.js\",\"/_next/static/immutable/chunks/1fs6zsjmkbi83.js\",\"/_next/static/immutable/chunks/1b90-pdlko2_2.js\",\"/_next/static/immutable/chunks/39zcstwudliuq.js\",\"/_next/static/immutable/chunks/01yfk-nchzd5e.js\"],\"SidebarProvider\"]\n7:I[977994,[\"/_next/static/immutable/chunks/0x-9rc1bm-510.js\",\"/_next/static/immutable/chunks/1fs6zsjmkbi83.js\",\"/_next/static/immutable/chunks/1b90-pdlko2_2.js\",\"/_next/static/immutable/chunks/39zcstwudliuq.js\",\"/_next/static/immutable/chunks/01yfk-nchzd5e.js\"],\"default\"]\n8:I[403265,[\"/_next/static/immutable/chunks/0x-9rc1bm-510.js\",\"/_next/static/immutable/chunks/1fs6zsjmkbi83.js\",\"/_next/static/immutable/chunks/1b90-pdlko2_2.js\",\"/_next/static/immutable/chunks/39zcstwudliuq.js\",\"/_next/static/immutable/chunks/01yfk-nchzd5e.js\"],\"default\"]\n9:I[263327,[\"/_next/static/immutable/chunks/0x-9rc1bm-510.js\",\"/_next/static/immutable/chunks/1fs6zsjmkbi83.js\",\"/_next/static/immutable/chunks/1b90-pdlko2_2.js\",\"/_next/static/immutable/chunks/39zcstwudliuq.js\",\"/_next/static/immutable/chunks/01yfk-nchzd5e.js\"],\"default\"]\na:I[339756,[\"/_next/static/immutable/chunks/0x-9rc1bm-510.js\",\"/_next/static/immutable/chunks/1fs6zsjmkbi83.js\",\"/_next/static/immutable/chunks/1b90-pdlko2_2.js\",\"/_next/static/immutable/chunks/39zcstwudliuq.js\",\"/_next/static/immutable/chunks/01yfk-nchzd5e.js\"],\"default\"]\nb:I[837457,[\"/_next/static/immutable/chunks/0x-9rc1bm-510.js\",\"/_next/static/immutable/chunks/1fs6zsjmkbi83.js\",\"/_next/static/immutable/chunks/1b90-pdlko2_2.js\",\"/_next/static/immutable/chunks/39zcstwudliuq.js\",\"/_next/static/immutable/chunks/01yfk-nchzd5e.js\"],\"default\"]\nc:I[522016,[\"/_next/static/immutable/chunks/0x-9rc1bm-510.js\",\"/_next/static/immutable/chunks/1fs6zsjmkbi83.js\",\"/_next/static/immutable/chunks/1b90-pdlko2_2.js\",\"/_next/static/immutable/chunks/39zcstwudliuq.js\",\"/_next/static/immutable/chunks/01yfk-nchzd5e.js\"],\"\"]\n14:I[168027,[\"/_next/static/immutable/chunks/0x-9rc1bm-510.js\",\"/_next/static/immutable/chunks/1fs6zsjmkbi83.js\",\"/_next/static/immutable/chunks/1b90-pdlko2_2.js\",\"/_next/static/immutable/chunks/39zcstwudliuq.js\",\"/_next/static/immutable/chunks/01yfk-nchzd5e.js\"],\"default\",1]\n:HL[\"/_next/static/immutable/chunks/2e445toz63gzv.css\",\"style\"]\n:HL[\"/_next/static/immutable/chunks/2quw_n0drob2p.css\",\"style\"]\n:HL[\"/_next/static/immutable/media/83afe278b6a6bb3c-s.p.45535valc9rzk.woff2\",\"font\",{\"crossOrigin\":\"\",\"type\":\"font/woff2\"}]\n12:X\n0:{\"P\":null,\"c\":[\"\",\"reference\",\"html\",\"meta-tags\"],\"q\":\"\",\"i\":false,\"f\":[[[\"\",{\"children\":[\"reference\",{\"children\":[[\"tech\",\"html\",\"d\",[]],{\"children\":[[\"slug\",\"meta-tags\",\"d\",[]],{\"children\":[\"__PAGE__\",{},\"$undefined\",\"$undefined\",4096]},\"$undefined\",\"$undefined\",4096]},\"$undefined\",\"$undefined\",4096]},\"$undefined\",\"$undefined\",4096]},\"$undefined\",\"$undefined\",4112],[[\"$\",\"$1\",\"c\",{\"children\":[[[\"$\",\"link\",\"0\",{\"rel\":\"stylesheet\",\"href\":\"/_next/static/immutable/chunks/2e445toz63gzv.css\",\"precedence\":\"next\",\"crossOrigin\":\"$undefined\",\"nonce\":\"$undefined\"}],[\"$\",\"link\",\"1\",{\"rel\":\"stylesheet\",\"href\":\"/_next/static/immutable/chunks/2quw_n0drob2p.css\",\"precedence\":\"next\",\"crossOrigin\":\"$undefined\",\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-0\",{\"src\":\"/_next/static/immutable/chunks/0x-9rc1bm-510.js\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-1\",{\"src\":\"/_next/static/immutable/chunks/1fs6zsjmkbi83.js\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-2\",{\"src\":\"/_next/static/immutable/chunks/1b90-pdlko2_2.js\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-3\",{\"src\":\"/_next/static/immutable/chunks/39zcstwudliuq.js\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-4\",{\"src\":\"/_next/static/immutable/chunks/01yfk-nchzd5e.js\",\"async\":true,\"nonce\":\"$undefined\"}]],[\"$\",\"html\",null,{\"lang\":\"en\",\"className\":\"h-full overflow-x-hidden inter_5901b7c6-module__ec5Qua__variable\",\"children\":[[\"$\",\"head\",null,{\"children\":[[\"$\",\"script\",null,{\"type\":\"application/ld+json\",\"dangerouslySetInnerHTML\":{\"__html\":\"{\\\"@context\\\":\\\"https://schema.org\\\",\\\"@type\\\":\\\"WebSite\\\",\\\"name\\\":\\\"Code Syllabus\\\",\\\"url\\\":\\\"https://www.codesyllabus.com\\\",\\\"potentialAction\\\":{\\\"@type\\\":\\\"SearchAction\\\",\\\"target\\\":\\\"https://www.codesyllabus.com/search?q={search_term_string}\\\",\\\"query-input\\\":\\\"required name=search_term_string\\\"},\\\"publisher\\\":{\\\"@type\\\":\\\"Organization\\\",\\\"name\\\":\\\"Code Syllabus\\\",\\\"logo\\\":{\\\"@type\\\":\\\"ImageObject\\\",\\\"url\\\":\\\"https://www.codesyllabus.com/logo.png\\\"}}}\"}}],[\"$\",\"script\",null,{\"type\":\"text/plain\",\"data-type\":\"application/javascript\",\"data-name\":\"analytics\",\"src\":\"https://www.googletagmanager.com/gtag/js?id=G-JXEMVN36M7\"}],[\"$\",\"script\",null,{\"type\":\"text/plain\",\"data-type\":\"application/javascript\",\"data-name\":\"analytics\",\"dangerouslySetInnerHTML\":{\"__html\":\"\\n window.dataLayer = window.dataLayer || [];\\n window.gtag = function(){window.dataLayer.push(arguments);}\\n window.gtag('js', new Date());\\n window.gtag('config', 'G-JXEMVN36M7', {\\n page_path: window.location.pathname,\\n });\\n window.gtag('config', 'AW-18173917080');\\n \"}}]]}],[\"$\",\"body\",null,{\"className\":\"bg-brand-cream text-black min-h-screen flex flex-col overflow-x-hidden\",\"children\":[[\"$\",\"$L2\",null,{}],[\"$\",\"$L3\",null,{}],[\"$\",\"$L4\",null,{\"children\":[\"$\",\"$L5\",null,{\"children\":[\"$\",\"$L6\",null,{\"children\":[[\"$\",\"$L7\",null,{}],[\"$\",\"$L8\",null,{}],[\"$\",\"div\",null,{\"className\":\"flex flex-grow w-full max-w-[1920px] mx-auto\",\"children\":[[\"$\",\"$L9\",null,{}],[\"$\",\"main\",null,{\"className\":\"flex-1 w-full min-h-screen min-w-0\",\"children\":[\"$\",\"$La\",null,{\"parallelRouterKey\":\"children\",\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$Lb\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":[[\"$\",\"div\",null,{\"className\":\"min-h-screen bg-brand-cream flex flex-col items-center justify-center p-8 text-center\",\"children\":[\"$\",\"div\",null,{\"className\":\"bg-white border-4 border-black p-12 shadow-[12px_12px_0px_#000] max-w-2xl transform -rotate-1\",\"children\":[[\"$\",\"h2\",null,{\"className\":\"text-6xl font-black uppercase mb-4 text-red-500 drop-shadow-[4px_4px_0px_#000]\",\"children\":\"404: LOST_IN_LIP\"}],[\"$\",\"p\",null,{\"className\":\"font-mono font-bold text-xl mb-8 bg-black text-white p-4\",\"children\":\"Oops! The page you're looking for doesn't exist in our sweet universe.\"}],[\"$\",\"div\",null,{\"className\":\"flex flex-col md:flex-row gap-4 justify-center\",\"children\":[[\"$\",\"$Lc\",null,{\"href\":\"/\",\"children\":[\"$\",\"button\",null,{\"className\":\"bg-brand-lime border-4 border-black px-8 py-4 font-black uppercase text-xl shadow-[4px_4px_0px_#000] hover:translate-x-[2px] hover:translate-y-[2px] hover:shadow-none transition-all\",\"children\":\"Back Home\"}]}],[\"$\",\"$Lc\",null,{\"href\":\"/tutorials\",\"children\":[\"$\",\"button\",null,{\"className\":\"bg-white border-4 border-black px-8 py-4 font-black uppercase text-xl shadow-[4px_4px_0px_#000] hover:translate-x-[2px] hover:translate-y-[2px] hover:shadow-none transition-all\",\"children\":\"View Tutorials\"}]}]]}]]}]}],[]],\"forbidden\":\"$undefined\",\"unauthorized\":\"$undefined\"}]}]]}],\"$Ld\"]}]}]}]]}]]}]]}],{\"children\":[\"$Le\",{\"children\":[\"$Lf\",{\"children\":[\"$L10\",{\"children\":[\"$L11\",{},null,false,null]},null,false,null]},null,false,null]},null,false,\"$12\"]},null,false,null],\"$L13\",false]],\"m\":\"$undefined\",\"G\":[\"$14\",[\"$L15\",\"$L16\"]],\"S\":false,\"h\":null,\"r\":\"$undefined\",\"s\":\"$undefined\",\"a\":\"$undefined\",\"l\":\"$undefined\",\"p\":\"$undefined\",\"d\":\"$undefined\"}\n17:I[55119,[\"/_next/static/immutable/chunks/0x-9rc1bm-510.js\",\"/_next/static/immutable/chunks/1fs6zsjmkbi83.js\",\"/_next/static/immutable/chunks/1b90-pdlko2_2.js\",\"/_next/static/immutable/chunks/39zcstwudliuq.js\",\"/_next/static/immutable/chunks/01yfk-nchzd5e.js\"],\"NewsletterForm\"]\n1c:I[92825,[\"/_next/static/immutable/chunks/0x-9rc1bm-510.js\",\"/_next/static/immutable/chunks/1fs6zsjmkbi83.js\",\"/_next/static/immutable/chunks/1b90-pdlko2_2.js\",\"/_next/static/immutable/chunks/39zcstwudliuq.js\",\"/_next/static/immutable/chunks/01yfk-nchzd5e.js\"],\"ClientSegmentRoot\"]\n1d:I[180401,[\"/_next/static/immutable/chunks/0x-9rc1bm-510.js\",\"/_next/static/immutable/chunks/1fs6zsjmkbi83.js\",\"/_next/static/immutable/chunks/1b90-pdlko2_2.js\",\"/_next/static/immutable/chunks/39zcstwudliuq.js\",\"/_next/static/immutable/chunks/01yfk-nchzd5e.js\",\"/_next/static/immutable/chunks/31g38n7h5obt-.js\",\"/_next/static/immutable/chunks/22_dddo87zy57.js\",\"/_next/static/immutable/chunks/1kqgb82l_hvn5.js\"],\"default\"]\n1e:I[347257,[\"/_next/static/immutable/chunks/0x-9rc1bm-510.js\",\"/_next/static/immutable/chunks/1fs6zsjmkbi83.js\",\"/_next/static/immutable/chunks/1b90-pdlko2_2.js\",\"/_next/static/immutable/chunks/39zcstwudliuq.js\",\"/_next/static/immutable/chunks/01yfk-nchzd5e.js\"],\"ClientPageRoot\"]\n1f:I[277305,[\"/_next/static/immutable/chunks/0x-9rc1bm-510.js\",\"/_next/static/immutable/chunks/1fs6zsjmkbi83.js\",\"/_next/static/immutable/chunks/1b90-pdlko2_2.js\",\"/_next/static/immutable/chunks/39zcstwudliuq.js\",\"/_next/static/immutable/chunks/01yfk-nchzd5e.js\",\"/_next/static/immutable/chunks/31g38n7h5obt-.js\",\"/_next/static/immutable/chunks/22_dddo87zy57.js\",\"/_next/static/immutable/chunks/1kqgb82l_hvn5.js\",\"/_next/static/immutable/chunks/3bjkizcwyk-qe.js\",\"/_next/static/immutable/chunks/1_dniy_cdl32n.js\",\"/_next/static/immutable/chunks/0ude5t-3jqxq6.js\",\"/_next/static/immutable/chunks/3gdzsi88g6zo2.js\",\"/_next/static/immutable/chunks/1i6q35thvcdy2.js\",\"/_next/static/immutable/chunks/2ph-593jh2uwy.js\",\"/_next/static/immutable/chunks/1b13m_4ps-_w-.js\",\"/_next/static/immutable/chunks/3-_bet62tnztg.js\",\"/_next/static/immutable/chunks/3jqlc8yme75mi.js\",\"/_next/static/immutable/chunks/1kljflryueimy.js\",\"/_next/static/immutable/chunks/0blet76tb3usg.js\",\"/_next/static/immutable/chunks/1pxg5vwc7chqf.js\",\"/_next/static/immutable/chunks/1b9j2dr9tyx1m.js\",\"/_next/static/immutable/chunks/2q4-3pzsi3nsq.js\",\"/_next/static/immutable/chunks/2od2dh-aees5q.js\",\"/_next/static/immutable/chunks/080un0eyfh4b6.js\",\"/_next/static/immutable/chunks/1xn8s6yh2_yuo.js\",\"/_next/static/immutable/chunks/0fpa63ti-2neq.js\"],\"default\"]\n20:I[897367,[\"/_next/static/immutable/chunks/0x-9rc1bm-510.js\",\"/_next/static/immutable/chunks/1fs6zsjmkbi83.js\",\"/_next/static/immutable/chunks/1b90-pdlko2_2.js\",\"/_next/static/immutable/chunks/39zcstwudliuq.js\",\"/_next/static/immutable/chunks/01yfk-nchzd5e.js\"],\"OutletBoundary\"]\n21:\"$Sreact.suspense\"\n23:I[897367,[\"/_next/static/immutable/chunks/0x-9rc1bm-510.js\",\"/_next/static/immutable/chunks/1fs6zsjmkbi83.js\",\"/_next/static/immutable/chunks/1b90-pdlko2_2.js\",\"/_next/static/immutable/chunks/39zcstwudliuq.js\",\"/_next/static/immutable/chunks/01yfk-nchzd5e.js\"],\"ViewportBoundary\"]\n25:I[897367,[\"/_next/static/immutable/chunks/0x-9rc1bm-510.js\",\"/_next/static/immutable/chunks/1fs6zsjmkbi83.js\",\"/_next/static/immutable/chunks/1b90-pdlko2_2.js\",\"/_next/static/immutable/chunks/39zcstwudliuq.js\",\"/_next/static/immutable/chunks/01yfk-nchzd5e.js\"],\"MetadataBoundary\"]\nd:[\"$\",\"footer\",null,{\"className\":\"bg-gray-800 text-white p-4 text-center group w-full\",\"children\":[[\"$\",\"h4\",null,{\"className\":\"text-2xl font-bold my-4 hidden lg:block\",\"children\":\"Web Development Course\"}],[\"$\",\"div\",null,{\"className\":\"transition-all duration-300\",\"children\":[\"$\",\"div\",null,{\"className\":\"bg-gray-900 text-white py-6 text-left\",\"children\":[[\"$\",\"div\",null,{\"className\":\"container mx-auto px-6 lg:px-20 border-b border-gray-800 pb-2 mb-8 flex justify-center\",\"children\":[\"$\",\"$L17\",null,{}]}],[\"$\",\"div\",null,{\"className\":\"container mx-auto px-6 lg:px-20\",\"children\":[\"$\",\"div\",null,{\"className\":\"grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-8\",\"children\":[[\"$\",\"div\",null,{\"children\":[[\"$\",\"h3\",null,{\"className\":\"text-xl font-semibold mb-4\",\"children\":\"Important Links\"}],[\"$\",\"ul\",null,{\"className\":\"space-y-2\",\"children\":[[\"$\",\"li\",null,{\"children\":[\"$\",\"$Lc\",null,{\"href\":\"/about-us\",\"className\":\"hover:underline text-gray-300 hover:text-white transition-colors\",\"children\":\"About Us\"}]}],[\"$\",\"li\",null,{\"children\":[\"$\",\"$Lc\",null,{\"href\":\"/blog\",\"className\":\"hover:underline text-gray-300 hover:text-white transition-colors\",\"children\":\"Blog\"}]}],[\"$\",\"li\",null,{\"children\":[\"$\",\"$Lc\",null,{\"href\":\"/links\",\"className\":\"hover:underline text-gray-300 hover:text-white transition-colors\",\"children\":\"Links\"}]}],[\"$\",\"li\",null,{\"children\":[\"$\",\"$Lc\",null,{\"href\":\"/courses\",\"className\":\"hover:underline text-gray-300 hover:text-white transition-colors\",\"children\":\"Courses\"}]}],[\"$\",\"li\",null,{\"children\":[\"$\",\"$Lc\",null,{\"href\":\"/bootcamp/html\",\"className\":\"hover:underline text-gray-300 hover:text-white transition-colors\",\"children\":\"Projects\"}]}],[\"$\",\"li\",null,{\"children\":[\"$\",\"$Lc\",null,{\"href\":\"/contact\",\"className\":\"hover:underline text-gray-300 hover:text-white transition-colors\",\"children\":\"Contact\"}]}],[\"$\",\"li\",null,{\"children\":[\"$\",\"$Lc\",null,{\"href\":\"/site-map\",\"className\":\"hover:underline text-gray-300 hover:text-white transition-colors\",\"children\":\"Sitemap\"}]}]]}]]}],[\"$\",\"div\",null,{\"children\":[[\"$\",\"h3\",null,{\"className\":\"text-xl font-semibold mb-4\",\"children\":\"Course Categories\"}],[\"$\",\"ul\",null,{\"className\":\"space-y-2\",\"children\":[[\"$\",\"li\",null,{\"children\":[\"$\",\"$Lc\",null,{\"href\":\"/courses/html\",\"className\":\"hover:underline text-gray-300 hover:text-white transition-colors\",\"children\":\"HTML Course\"}]}],[\"$\",\"li\",null,{\"children\":[\"$\",\"$Lc\",null,{\"href\":\"/courses/css\",\"className\":\"hover:underline text-gray-300 hover:text-white transition-colors\",\"children\":\"CSS Course\"}]}],[\"$\",\"li\",null,{\"children\":[\"$\",\"$Lc\",null,{\"href\":\"/courses/javascript\",\"className\":\"hover:underline text-gray-300 hover:text-white transition-colors\",\"children\":\"Learn JavaScript\"}]}],[\"$\",\"li\",null,{\"children\":[\"$\",\"$Lc\",null,{\"href\":\"/courses/frontend/react\",\"className\":\"hover:underline text-gray-300 hover:text-white transition-colors\",\"children\":\"React Framework\"}]}],[\"$\",\"li\",null,{\"children\":[\"$\",\"$Lc\",null,{\"href\":\"/courses/python\",\"className\":\"hover:underline text-gray-300 hover:text-white transition-colors\",\"children\":\"Python Course\"}]}],[\"$\",\"li\",null,{\"children\":[\"$\",\"$Lc\",null,{\"href\":\"/courses/cloud/aws\",\"className\":\"hover:underline text-gray-300 hover:text-white transition-colors\",\"children\":\"AWS Cloud\"}]}],[\"$\",\"li\",null,{\"children\":[\"$\",\"$Lc\",null,{\"href\":\"/courses/artificialintelligence/foundations\",\"className\":\"hover:underline text-gray-300 hover:text-white transition-colors\",\"children\":\"AI Foundations\"}]}]]}]]}],[\"$\",\"div\",null,{\"children\":[[\"$\",\"h3\",null,{\"className\":\"text-xl font-semibold mb-4\",\"children\":\"Follow Us\"}],[\"$\",\"div\",null,{\"className\":\"flex gap-4 mb-4\",\"children\":[[\"$\",\"a\",null,{\"href\":\"https://facebook.com\",\"target\":\"_blank\",\"rel\":\"noopener noreferrer\",\"aria-label\":\"Facebook\",\"className\":\"hover:text-blue-500 transition-all\",\"children\":[[\"$\",\"span\",null,{\"className\":\"sr-only\",\"children\":\"Facebook\"}],[\"$\",\"svg\",null,{\"xmlns\":\"http://www.w3.org/2000/svg\",\"className\":\"h-8 w-8 fill-current\",\"viewBox\":\"0 0 24 24\",\"children\":[\"$\",\"path\",null,{\"d\":\"M22.675 0H1.325C.593 0 0 .592 0 1.324v21.351C0 23.406.593 24 1.325 24H12.82v-9.294H9.692v-3.622h3.129V8.413c0-3.1 1.894-4.788 4.662-4.788 1.325 0 2.465.099 2.797.143v3.24h-1.92c-1.506 0-1.796.715-1.796 1.763v2.31h3.588l-.467 3.622h-3.121V24h6.116c.732 0 1.324-.594 1.324-1.325V1.324C24 .592 23.407 0 22.675 0z\"}]}]]}],\"$L18\",\"$L19\"]}]]}],\"$L1a\"]}]}]]}]}],\"$L1b\"]}]\ne:[\"$\",\"$1\",\"c\",{\"children\":[null,[\"$\",\"$La\",null,{\"parallelRouterKey\":\"children\",\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$Lb\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":\"$undefined\",\"forbidden\":\"$undefined\",\"unauthorized\":\"$undefined\"}]]}]\nf:[\"$\",\"$1\",\"c\",{\"children\":[[[\"$\",\"script\",\"script-0\",{\"src\":\"/_next/static/immutable/chunks/31g38n7h5obt-.js\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-1\",{\"src\":\"/_next/static/immutable/chunks/22_dddo87zy57.js\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-2\",{\"src\":\"/_next/static/immutable/chunks/1kqgb82l_hvn5.js\",\"async\":true,\"nonce\":\"$undefined\"}]],[\"$\",\"$L1c\",null,{\"Component\":\"$1d\",\"slots\":{\"children\":[\"$\",\"$La\",null,{\"parallelRouterKey\":\"children\",\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$Lb\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":\"$undefined\",\"forbidden\":\"$undefined\",\"unauthorized\":\"$undefined\"}]},\"serverProvidedParams\":{\"params\":{\"tech\":\"html\"},\"promises\":null}}]]}]\n10:[\"$\",\"$1\",\"c\",{\"children\":[null,[\"$\",\"$La\",null,{\"parallelRouterKey\":\"children\",\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$Lb\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":\"$undefined\",\"forbidden\":\"$undefined\",\"unauthorized\":\"$undefined\"}]]}]\n11:[\"$\",\"$1\",\"c\",{\"children\":[[\"$\",\"$L1e\",null,{\"Component\":\"$1f\",\"serverProvidedParams\":{\"searchParams\":{},\"params\":{\"tech\":\"html\",\"slug\":\"meta-tags\"},\"promises\":null}}],[[\"$\",\"script\",\"script-0\",{\"src\":\"/_next/static/immutable/chunks/3bjkizcwyk-qe.js\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-1\",{\"src\":\"/_next/static/immutable/chunks/1_dniy_cdl32n.js\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-2\",{\"src\":\"/_next/static/immutable/chunks/0ude5t-3jqxq6.js\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-3\",{\"src\":\"/_next/static/immutable/chunks/3gdzsi88g6zo2.js\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-4\",{\"src\":\"/_next/static/immutable/chunks/1i6q35thvcdy2.js\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-5\",{\"src\":\"/_next/static/immutable/chunks/2ph-593jh2uwy.js\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-6\",{\"src\":\"/_next/static/immutable/chunks/1b13m_4ps-_w-.js\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-7\",{\"src\":\"/_next/static/immutable/chunks/3-_bet62tnztg.js\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-8\",{\"src\":\"/_next/static/immutable/chunks/3jqlc8yme75mi.js\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-9\",{\"src\":\"/_next/static/immutable/chunks/1kljflryueimy.js\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-10\",{\"src\":\"/_next/static/immutable/chunks/0blet76tb3usg.js\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-11\",{\"src\":\"/_next/static/immutable/chunks/1pxg5vwc7chqf.js\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-12\",{\"src\":\"/_next/static/immutable/chunks/1b9j2dr9tyx1m.js\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-13\",{\"src\":\"/_next/static/immutable/chunks/2q4-3pzsi3nsq.js\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-14\",{\"src\":\"/_next/static/immutable/chunks/2od2dh-aees5q.js\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-15\",{\"src\":\"/_next/static/immutable/chunks/080un0eyfh4b6.js\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-16\",{\"src\":\"/_next/static/immutable/chunks/1xn8s6yh2_yuo.js\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-17\",{\"src\":\"/_next/static/immutable/chunks/0fpa63ti-2neq.js\",\"async\":true,\"nonce\":\"$undefined\"}]],[\"$\",\"$L20\",null,{\"children\":[\"$\",\"$21\",null,{\"name\":\"Next.MetadataOutlet\",\"children\":\"$@22\"}]}]]}]\n13:[\"$\",\"$1\",\"h\",{\"children\":[null,[\"$\",\"$L23\",null,{\"children\":\"$L24\"}],[\"$\",\"div\",null,{\"hidden\":true,\"children\":[\"$\",\"$L25\",null,{\"children\":[\"$\",\"$21\",null,{\"name\":\"Next.Metadata\",\"children\":\"$L26\"}]}]}],[\"$\",\"meta\",null,{\"name\":\"next-size-adjust\",\"content\":\"\"}]]}]\n15:[\"$\",\"link\",\"0\",{\"rel\":\"stylesheet\",\"href\":\"/_next/static/immutable/chunks/2e445toz63gzv.css\",\"precedence\":\"next\",\"crossOrigin\":\"$undefined\",\"nonce\":\"$undefined\"}]\n16:[\"$\",\"link\",\"1\",{\"rel\":\"stylesheet\",\"href\":\"/_next/static/immutable/chunks/2quw_n0drob2p.css\",\"precedence\":\"next\",\"crossOrigin\":\"$undefined\",\"nonce\":\"$undefined\"}]\n12:C\n18:[\"$\",\"a\",null,{\"href\":\"https://www.linkedin.com/company/codesyllabuscom\",\"target\":\"_blank\",\"rel\":\"noopener noreferrer\",\"aria-label\":\"LinkedIn\",\"className\":\"hover:text-blue-500 transition-all\",\"children\":[[\"$\",\"span\",null,{\"className\":\"sr-only\",\"children\":\"LinkedIn\"}],[\"$\",\"svg\",null,{\"xmlns\":\"http://www.w3.org/2000/svg\",\"className\":\"h-8 w-8 fill-current\",\"viewBox\":\"0 0 24 24\",\"children\":[\"$\",\"path\",null,{\"d\":\"M20.447 20.452h-3.554v-5.569c0-1.328-.027-3.037-1.852-3.037-1.853 0-2.136 1.445-2.136 2.939v5.667H9.351V9h3.414v1.561h.046c.477-.9 1.637-1.85 3.37-1.85 3.601 0 4.267 2.37 4.267 5.455v6.286zM5.337 7.433c-1.144 0-2.063-.926-2.063-2.065 0-1.138.92-2.063 2.063-2.063 1.14 0 2.064.925 2.064 2.063 0 1.139-.925 2.065-2.064 2.065zm1.782 13.019H3.555V9h3.564v11.452zM22.225 0H1.771C.792 0 0 .774 0 1.729v20.542C0 23.227.792 24 1.771 24h20.451C23.2 24 24 23.227 24 22.271V1.729C24 .774 23.2 0 22.225 0z\"}]}]]}]\n27:T426,M12 2.163c3.204 0 3.584.012 4.85.07 3.252.148 4.771 1.691 4.919 4.919.058 1.265.069 1.645.069 4.849 0 3.205-.012 3.584-.069 4.849-.149 3.225-1.664 4.771-4.919 4.919-1.266.058-1.644.07-4.85.07-3.204 0-3.584-.012-4.849-.07-3.26-.149-4.771-1.699-4.919-4.92-.058-1.265-.07-1.644-.07-4.849 0-3.204.013-3.583.07-4.849.149-3.227 1.664-4.771 4.919-4.919 1.266-.057 1.645-.069 4.849-.069zm0-2.163c-3.259 0-3.667.014-4.947.072-4.358.2-6.78 2.618-6.98 6.98-.059 1.281-.073 1.689-.073 4.948 0 3.259.014 3.668.072 4.948.2 4.358 2.618 6.78 6.98 6.98 1.281.058 1.689.072 4.948.072 3.259 0 3.668-.014 4.948-.072 4.354-.2 6.782-2.618 6.979-6.98.059-1.28.073-1.689.073-4.948 0-3.259-.014-3.667-.072-4.947-.196-4.354-2.617-6.78-6.979-6.98-1.281-.059-1.69-.073-4.949-.073zm0 5.838c-3.403 0-6.162 2.759-6.162 6.162s2.759 6.163 6.162 6.163 6.162-2.759 6.162-6.163-2.759-6.162-6.162-6.162zm0 10.162c-2.209 0-4-1.79-4-4 0-2.209 1.791-4 4-4s4 1.791 4 4c0 2.21-1.791 4-4 4zm6.406-11.845c-.796 0-1.441.645-1.441 1.44s.645 1.44 1.441 1.44c.795 0 1.439-.645 1.439-1.44s-.644-1.44-1.439-1.44z19:[\"$\",\"a\",null,{\"href\":\"https://www.instagram.com/codesyllabus_/\",\"target\":\"_blank\",\"rel\":\"noopener noreferrer\",\"aria-label\":\"Instagram\",\"className\":\"hover:text-pink-500 transition-all\",\"children\":[[\"$\",\"span\",null,{\"className\":\"sr-only\",\"children\":\"Instagram\"}],[\"$\",\"svg\",null,{\"xmlns\":\"http://www.w3.org/2000/svg\",\"className\":\"h-8 w-8 fill-current\",\"viewBox\":\"0 0 24 24\",\"children\":[\"$\",\"path\",null,{\"d\":\"$27\"}]}]]}]\n1a:[\"$\",\"div\",null,{\"children\":[[\"$\",\"h3\",null,{\"className\":\"text-xl font-semibold mb-4\",\"children\":\"Our Commitment to Quality\"}],[\"$\",\"p\",null,{\"className\":\"text-sm text-gray-300 leading-relaxed\",\"children\":\"Our mission is to provide accessible, high-quality web development education. All tutorials are crafted by seasoned industry professionals and rigorously reviewed for accuracy. We base our content on official documentation from sources like the Mozilla Developer Network (MDN) and W3C standards to ensure you learn the most current and correct information.\"}]]}]\n1b:[\"$\",\"div\",null,{\"className\":\"container mx-auto text-center py-4 border-t border-gray-700 mt-4\",\"children\":[\"$\",\"p\",null,{\"className\":\"text-xs text-gray-500\",\"children\":[\"© 2025 Code Syllabus. All rights reserved.\",[\"$\",\"$Lc\",null,{\"href\":\"/Privacy-Policy\",\"className\":\"text-blue-400 hover:underline ml-4\",\"children\":\"Privacy Policy\"}],[\"$\",\"$Lc\",null,{\"href\":\"/Data-Protection\",\"className\":\"text-blue-400 hover:underline ml-4\",\"children\":\"Data Protection\"}],[\"$\",\"$Lc\",null,{\"href\":\"/terms-of-use\",\"className\":\"text-blue-400 hover:underline ml-4\",\"children\":\"Terms of Use\"}]]}]}]\n24:[[\"$\",\"meta\",\"0\",{\"charSet\":\"utf-8\"}],[\"$\",\"meta\",\"1\",{\"name\":\"viewport\",\"content\":\"width=device-width, initial-scale=1\"}]]\n22:null\n26:[[\"$\",\"title\",\"0\",{\"children\":\"META Tags — HTML Reference | Code Syllabus\"}],[\"$\",\"meta\",\"1\",{\"name\":\"description\",\"content\":\"Meta tags are a family of \u003cmeta name=\\\"...\\\" content=\\\"...\\\"\u003e elements in \u003chead\u003e that communicate metadata to browsers, search engines, and other tools — beyond the single \u003cmeta\u003e element's basic syntax.\"}],[\"$\",\"meta\",\"2\",{\"name\":\"keywords\",\"content\":\"html,META Tags,web development,META Tags\"}],[\"$\",\"meta\",\"3\",{\"name\":\"robots\",\"content\":\"index, follow\"}],[\"$\",\"meta\",\"4\",{\"name\":\"googlebot\",\"content\":\"index, follow, max-video-preview:-1, max-image-preview:large, max-snippet:-1\"}],[\"$\",\"link\",\"5\",{\"rel\":\"canonical\",\"href\":\"https://www.codesyllabus.com/reference/html/meta-tags\"}],[\"$\",\"meta\",\"6\",{\"property\":\"og:title\",\"content\":\"META Tags — HTML Reference | Code Syllabus\"}],[\"$\",\"meta\",\"7\",{\"property\":\"og:description\",\"content\":\"Meta tags are a family of \u003cmeta name=\\\"...\\\" content=\\\"...\\\"\u003e elements in \u003chead\u003e that communicate metadata to browsers, search engines, and other tools — beyond the single \u003cmeta\u003e element's basic syntax.\"}],[\"$\",\"meta\",\"8\",{\"property\":\"og:url\",\"content\":\"https://www.codesyllabus.com/reference/html/meta-tags\"}],[\"$\",\"meta\",\"9\",{\"name\":\"twitter:card\",\"content\":\"summary\"}],[\"$\",\"meta\",\"10\",{\"name\":\"twitter:title\",\"content\":\"META Tags — HTML Reference | Code Syllabus\"}],[\"$\",\"meta\",\"11\",{\"name\":\"twitter:description\",\"content\":\"Meta tags are a family of \u003cmeta name=\\\"...\\\" content=\\\"...\\\"\u003e elements in \u003chead\u003e that communicate metadata to browsers, search engines, and other tools — beyond the single \u003cmeta\u003e element's basic syntax.\"}]]\n"])</script></body></html>