🚀 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...

<head>

AI & DATA SCIENCE // head-tag

The <head> element holds metadata about the document — title, character encoding, linked stylesheets, and scripts — none of which is rendered directly on the page.

Syntax

<head>
  <meta charset="UTF-8">
  <title>Page Title</title>
  <link rel="stylesheet" href="style.css">
</head>

Deep Dive Course

**`<head>`** is where you declare information ABOUT the page rather than content FOR the page: the browser tab title (`<title>`), character encoding (`<meta charset>`), the viewport for responsive design (`<meta name="viewport">`), linked CSS (`<link>`), and often `<script>` tags. None of this renders visually in the document body — the title only shows in the browser tab and search results.

1Understanding <head>

`<head>` is where you declare information ABOUT the page rather than content FOR the page: the browser tab title (<title>), character encoding (<meta charset>), the viewport for responsive design (<meta name="viewport">), linked CSS (<link>), and often <script> tags. None of this renders visually in the document body — the title only shows in the browser tab and search results.

💡

Put <meta charset="UTF-8"> as the very first line inside <head> — browsers can misinterpret special characters if it comes too late in the file.

editor.html
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1">
  <title>My Store — Home</title>
  <link rel="stylesheet" href="/styles.css">
</head>
localhost:3000

2Practical Example

Here is a real-world application of <head> showing how it is used in production HTML.

editor.html
<!-- Deferring a script so it doesn't block HTML parsing -->
<head>
  <script src="/analytics.js" defer></script>
</head>
localhost:3000

3Best Practices

Follow these guidelines when working with <head>:

1. Always include <meta charset="UTF-8"> and <meta name="viewport" content="width=device-width, initial-scale=1">

2. Give every page a unique, descriptive <title> for SEO

3. Load render-blocking CSS in <head>, and defer non-critical scripts

⚠️

Tip: Put <meta charset="UTF-8"> as the very first line inside <head> — browsers can misinterpret special characters if it comes too late in the file.

editor.html
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1">
  <title>My Store — Home</title>
  <link rel="stylesheet" href="/styles.css">
</head>
localhost:3000

Examples

Example 01Basic Usage
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1">
  <title>My Store — Home</title>
  <link rel="stylesheet" href="/styles.css">
</head>
Example 02Advanced Example
<!-- Deferring a script so it doesn't block HTML parsing -->
<head>
  <script src="/analytics.js" defer></script>
</head>

Best Practices

  • Always include and
  • Give every page a unique, descriptive for SEO</span></li><li class="flex items-start gap-4 bg-white p-4 border-2 border-black shadow-[4px_4px_0px_0px_rgba(0,0,0,1)] hover:-translate-y-1 hover:shadow-[6px_6px_0px_0px_#7B61FF] transition-all"><svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 512 512" class="text-[#7B61FF] text-xl mt-1 flex-shrink-0" height="1em" width="1em" xmlns="http://www.w3.org/2000/svg"><path d="M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z"></path></svg><span class="font-bold text-gray-800">Load render-blocking CSS in <head>, and defer non-critical scripts</span></li></ul></div><div class="mb-12"><h2 class="text-2xl font-black uppercase mb-4 flex items-center gap-3"><span class="bg-brand-pink text-white px-3 py-1 border-2 border-black shadow-[2px_2px_0px_0px_rgba(0,0,0,1)] flex items-center gap-2"><svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 512 512" height="1em" width="1em" xmlns="http://www.w3.org/2000/svg"><path d="M504 256c0 136.997-111.043 248-248 248S8 392.997 8 256C8 119.083 119.043 8 256 8s248 111.083 248 248zM262.655 90c-54.497 0-89.255 22.957-116.549 63.758-3.536 5.286-2.353 12.415 2.715 16.258l34.699 26.31c5.205 3.947 12.621 3.008 16.665-2.122 17.864-22.658 30.113-35.797 57.303-35.797 20.429 0 45.698 13.148 45.698 32.958 0 14.976-12.363 22.667-32.534 33.976C247.128 238.528 216 254.941 216 296v4c0 6.627 5.373 12 12 12h56c6.627 0 12-5.373 12-12v-1.333c0-28.462 83.186-29.647 83.186-106.667 0-58.002-60.165-102-116.531-102zM256 338c-25.365 0-46 20.635-46 46 0 25.364 20.635 46 46 46s46-20.636 46-46c0-25.365-20.635-46-46-46z"></path></svg> Interview Question</span></h2><details class="group bg-white border-4 border-black shadow-[6px_6px_0px_0px_rgba(0,0,0,1)] cursor-pointer"><summary class="p-6 font-black text-xl list-none flex justify-between items-center bg-gray-50 group-hover:bg-brand-pink group-hover:text-white transition-colors">What's the difference between <meta charset> in <head> and content in <body>?<span class="transform group-open:rotate-180 transition-transform">▼</span></summary><div class="p-6 border-t-4 border-black bg-white"><p class="font-bold text-gray-500 mb-4 uppercase tracking-widest text-sm border-l-4 border-gray-300 pl-3">Hint: <!-- -->One describes the document, the other IS the document.</p><p class="font-bold text-lg text-gray-900 leading-relaxed border-l-4 border-brand-lime pl-4"><head> contains metadata that describes the document (encoding, title, links to resources, SEO tags) but is never rendered as visible page content. <body> contains the actual content the user sees and interacts with. A common bug is putting visible elements like <h1> or <p> inside <head> by mistake — browsers will typically move them into <body> automatically, but you shouldn't rely on that error-recovery behavior.</p></div></details></div><div class="mb-12"><h2 class="text-2xl font-black uppercase mb-4 flex items-center gap-3"><span class="bg-brand-lime text-black px-3 py-1 border-2 border-black shadow-[2px_2px_0px_0px_rgba(0,0,0,1)] flex items-center gap-2"><svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 640 512" height="1em" width="1em" xmlns="http://www.w3.org/2000/svg"><path d="M104 96H56c-13.3 0-24 10.7-24 24v104H8c-4.4 0-8 3.6-8 8v48c0 4.4 3.6 8 8 8h24v104c0 13.3 10.7 24 24 24h48c13.3 0 24-10.7 24-24V120c0-13.3-10.7-24-24-24zm528 128h-24V120c0-13.3-10.7-24-24-24h-48c-13.3 0-24 10.7-24 24v272c0 13.3 10.7 24 24 24h48c13.3 0 24-10.7 24-24V288h24c4.4 0 8-3.6 8-8v-48c0-4.4-3.6-8-8-8zM456 32h-48c-13.3 0-24 10.7-24 24v168H256V56c0-13.3-10.7-24-24-24h-48c-13.3 0-24 10.7-24 24v400c0 13.3 10.7 24 24 24h48c13.3 0 24-10.7 24-24V288h128v168c0 13.3 10.7 24 24 24h48c13.3 0 24-10.7 24-24V56c0-13.3-10.7-24-24-24z"></path></svg> Exercises</span></h2><div class="space-y-6"><details class="group bg-white border-4 border-black shadow-[6px_6px_0px_0px_rgba(0,0,0,1)] cursor-pointer"><summary class="p-4 font-bold text-lg list-none flex flex-col md:flex-row justify-between items-start md:items-center bg-gray-50"><div class="flex items-center gap-4 mb-2 md:mb-0"><span class="px-2 py-1 text-xs font-black uppercase border-2 border-black shadow-[2px_2px_0px_0px_rgba(0,0,0,1)] text-black" style="background-color:#27C93F">Easy</span><span>Practice using <head> in a real scenario.</span></div><span class="text-brand-lime bg-black px-3 py-1 font-mono text-sm border-2 border-black shadow-[2px_2px_0px_0px_rgba(0,0,0,1)]">View Solution</span></summary><div class="p-6 bg-gray-900 border-t-4 border-black text-brand-cyan font-mono text-sm overflow-x-auto"><pre><code><head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>My Store — Home</title> <link rel="stylesheet" href="/styles.css"> </head></code></pre></div></details></div></div><div class="mt-12 border-t-4 border-black pt-8"><h2 class="text-2xl font-black uppercase mb-6 flex items-center gap-3"><span class="bg-[#7B61FF] text-white px-3 py-1 border-2 border-black shadow-[2px_2px_0px_0px_rgba(0,0,0,1)]">Frequently Asked Questions</span></h2><div class="space-y-4" itemScope="" itemType="https://schema.org/FAQPage"><details class="group bg-white border-2 border-black p-4 cursor-pointer shadow-[4px_4px_0px_0px_rgba(0,0,0,1)] hover:-translate-y-1 hover:shadow-[6px_6px_0px_0px_#00F0FF] transition-all" itemScope="" itemProp="mainEntity" itemType="https://schema.org/Question"><summary class="font-bold text-lg list-none flex justify-between items-center text-black" itemProp="name">What's the difference between <meta charset> in <head> and content in <body>?<span class="text-brand-pink group-open:rotate-180 transition-transform">▼</span></summary><div class="mt-4 pl-4 border-l-4 border-brand-pink text-gray-700" itemScope="" itemProp="acceptedAnswer" itemType="https://schema.org/Answer"><p itemProp="text"><head> contains metadata that describes the document (encoding, title, links to resources, SEO tags) but is never rendered as visible page content. <body> contains the actual content the user sees and interacts with. A common bug is putting visible elements like <h1> or <p> inside <head> by mistake — browsers will typically move them into <body> automatically, but you shouldn't rely on that error-recovery behavior.</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">html-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">body-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">META Tags</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">title-tag</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\",\"head-tag\"],\"q\":\"\",\"i\":false,\"f\":[[[\"\",{\"children\":[\"reference\",{\"children\":[[\"tech\",\"html\",\"d\",[]],{\"children\":[[\"slug\",\"head-tag\",\"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\":\"head-tag\"},\"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\":\"\u003chead\u003e — HTML Reference | Code Syllabus\"}],[\"$\",\"meta\",\"1\",{\"name\":\"description\",\"content\":\"The \u003chead\u003e element holds metadata about the document — title, character encoding, linked stylesheets, and scripts — none of which is rendered directly on the page.\"}],[\"$\",\"meta\",\"2\",{\"name\":\"keywords\",\"content\":\"html,head-tag,web development,\u003chead\u003e\"}],[\"$\",\"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/head-tag\"}],[\"$\",\"meta\",\"6\",{\"property\":\"og:title\",\"content\":\"\u003chead\u003e — HTML Reference | Code Syllabus\"}],[\"$\",\"meta\",\"7\",{\"property\":\"og:description\",\"content\":\"The \u003chead\u003e element holds metadata about the document — title, character encoding, linked stylesheets, and scripts — none of which is rendered directly on the page.\"}],[\"$\",\"meta\",\"8\",{\"property\":\"og:url\",\"content\":\"https://www.codesyllabus.com/reference/html/head-tag\"}],[\"$\",\"meta\",\"9\",{\"name\":\"twitter:card\",\"content\":\"summary\"}],[\"$\",\"meta\",\"10\",{\"name\":\"twitter:title\",\"content\":\"\u003chead\u003e — HTML Reference | Code Syllabus\"}],[\"$\",\"meta\",\"11\",{\"name\":\"twitter:description\",\"content\":\"The \u003chead\u003e element holds metadata about the document — title, character encoding, linked stylesheets, and scripts — none of which is rendered directly on the page.\"}]]\n"])</script></body></html>