โ† Back

seo-fundamentals

Programming
๐Ÿ’ก How to use: Copy this prompt and paste it into ChatGPT, Claude, Gemini, or any AI assistant. You can modify the placeholder text to customize it for your needs.
ID: #861
Category: Programming
Contributor: xenitV1
Developer: No
--- name: seo-fundamentals description: SEO fundamentals, E-E-A-T, Core Web Vitals, and 2025 Google algorithm updates version: 1.0 priority: high tags: [seo, marketing, google, e-e-a-t, core-web-vitals] --- # SEO Fundamentals (2025) ## Core Framework: E-E-A-T ``` Experience โ†’ First-hand experience, real stories Expertise โ†’ Credentials, certifications, knowledge Authoritativeness โ†’ Backlinks, media mentions, recognition Trustworthiness โ†’ HTTPS, contact info, transparency, reviews ``` ## 2025 Algorithm Updates | Update | Impact | Focus | |--------|--------|-------| | March 2025 Core | 63% SERP fluctuation | Content quality | | June 2025 Core | E-E-A-T emphasis | Authority signals | | Helpful Content | AI content penalties | People-first content | ## Core Web Vitals Targets | Metric | Target | Measurement | |--------|--------|-------------| | **LCP** | < 2.5s | Largest Contentful Paint | | **INP** | < 200ms | Interaction to Next Paint | | **CLS** | < 0.1 | Cumulative Layout Shift | ## Technical SEO Checklist ``` Site Structure: โ˜ XML sitemap submitted โ˜ robots.txt configured โ˜ Canonical tags correct โ˜ Hreflang tags (multilingual) โ˜ 301 redirects proper โ˜ No 404 errors Performance: โ˜ Images optimized (WebP) โ˜ Lazy loading โ˜ Minification (CSS/JS/HTML) โ˜ GZIP/Brotli compression โ˜ Browser caching โ˜ CDN active Mobile: โ˜ Responsive design โ˜ Mobile-friendly test passed โ˜ Touch targets 48x48px min โ˜ Font size 16px min โ˜ Viewport meta correct Structured Data: โ˜ Article schema โ˜ Organization schema โ˜ Person/Author schema โ˜ FAQPage schema โ˜ Breadcrumb schema โ˜ Review/Rating schema ``` ## AI Content Guidelines ``` โŒ Don't: - Publish purely AI-generated content - Skip fact-checking - Create duplicate content - Keyword stuffing โœ… Do: - AI draft + human edit - Add original insights - Expert review - E-E-A-T principles - Plagiarism check ``` ## Content Format for SEO Success ``` Title: Question-based or keyword-rich โ”œโ”€โ”€ Meta description (150-160 chars) โ”œโ”€โ”€ H1: Main keyword โ”œโ”€โ”€ H2: Related topics โ”‚ โ”œโ”€โ”€ H3: Subtopics โ”‚ โ””โ”€โ”€ Bullet points/lists โ”œโ”€โ”€ FAQ section (with FAQPage schema) โ”œโ”€โ”€ Internal links to related content โ””โ”€โ”€ External links to authoritative sources Elements: โ˜ Author bio with credentials โ˜ "Last updated" date โ˜ Original statistics/data โ˜ Citations and references โ˜ Summary/TL;DR box โ˜ Visual content (images, charts) โ˜ Social share buttons ``` ## Quick Reference ```javascript // Essential meta tags <meta name="description" content="..."> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="canonical" href="https://example.com/page"> // Open Graph for social <meta property="og:title" content="..."> <meta property="og:description" content="..."> <meta property="og:image" content="..."> // Schema markup example <script type="application/ld+json"> { "@context": "https://schema.org", "@type": "Article", "headline": "...", "author": { "@type": "Person", "name": "..." }, "datePublished": "2025-12-30", "dateModified": "2025-12-30" } </script> ``` ## SEO Tools (2025) | Tool | Purpose | |------|---------| | Google Search Console | Performance, indexing | | PageSpeed Insights | Core Web Vitals | | Lighthouse | Technical audit | | Semrush/Ahrefs | Keywords, backlinks | | Surfer SEO | Content optimization | --- **Last Updated:** 2025-12-30
โœ“ Prompt copied to clipboard!