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