1---2name: seo-best-practices3description: SEO methodologies, keyword research techniques, and optimization strategies for search engine visibility4---5
6# SEO Best Practices
7
8## Keyword Research Methods
9
10### Keyword Types
11- **Short-tail Keywords**: 1-2 words, high volume, high competition (e.g., "marketing")
12- **Medium-tail Keywords**: 2-3 words, moderate volume, moderate competition (e.g., "digital marketing tips")
13- **Long-tail Keywords**: 4+ words, lower volume, lower competition, higher intent (e.g., "digital marketing tips for small business")
14
15### Research Process
161. **Seed Keywords**: Start with core terms related to your business
172. **Expand**: Use keyword tools to find related terms and variations
183. **Analyze Intent**: Determine search intent (informational, navigational, transactional, commercial)
194. **Evaluate Metrics**: Consider search volume, difficulty, and opportunity
205. **Prioritize**: Focus on keywords with best ROI for your goals
21
22### Keyword Tools and Techniques
23- **Competitor Analysis**: Review competitor keywords and rankings
24- **Search Suggestions**: Use Google autocomplete and "People Also Ask"
25- **Related Searches**: Check bottom of SERP for related queries
26- **Question Keywords**: Target "how," "what," "why," "when," "where" queries
27- **Local SEO**: Include location-based keywords for local businesses
28
29## On-page SEO Checklist
30
31### Title Tags
32- **Length**: 50-60 characters optimal
33- **Placement**: Primary keyword near the beginning
34- **Format**: [Primary Keyword] | [Secondary Keyword] - [Brand Name]
35- **Uniqueness**: Unique title for every page
36- **Branding**: Include brand name for recognition
37
38### Meta Descriptions
39- **Length**: 150-160 characters optimal
40- **Purpose**: Compelling description to improve CTR
41- **Keywords**: Include primary keyword naturally
42- **CTA**: Include call-to-action (Learn more, Get started, etc.)
43- **Uniqueness**: Unique description for every page
44
45### Header Structure
46- **H1**: One per page, includes primary keyword, describes main topic
47- **H2**: Section headings, includes secondary keywords, logical hierarchy
48- **H3-H6**: Subsections, includes related keywords, maintains structure
49- **Consistency**: Follow logical heading hierarchy throughout
50
51### Content Optimization
52- **Keyword Density**: 1-2% for primary keyword, natural placement
53- **Semantic Keywords**: Include related terms and variations
54- **Readability**: Flesch-Kincaid grade level 8-10 for general audiences
55- **Content Length**: 300+ words minimum, 1000+ for competitive topics
56- **Internal Links**: 2-4 internal links to relevant content
57- **External Links**: 1-2 authoritative external sources
58
59### Image SEO
60- **File Names**: Descriptive, hyphen-separated names (e.g., "digital-marketing-strategy.jpg")
61- **Alt Text**: Descriptive, includes keyword when appropriate, max 125 characters
62- **File Size**: Compress to under 100KB for faster loading
63- **Dimensions**: Use appropriate sizes for display (avoid scaling in HTML)
64- **Captions**: Add captions for context and SEO benefit
65
66## Meta Tags Optimization
67
68### Essential Meta Tags
69```html
70<!-- Title Tag -->
71<title>Primary Keyword | Secondary Keyword - Brand Name</title>
72
73<!-- Meta Description -->
74<meta name="description" content="Compelling description with keyword and CTA">
75
76<!-- Canonical URL -->
77<link rel="canonical" href="https://example.com/page">
78
79<!-- Open Graph -->
80<meta property="og:title" content="Page Title">
81<meta property="og:description" content="Page Description">
82<meta property="og:image" content="https://example.com/image.jpg">
83<meta property="og:url" content="https://example.com/page">
84<meta property="og:type" content="article">
85
86<!-- Twitter Card -->
87<meta name="twitter:card" content="summary_large_image">
88<meta name="twitter:title" content="Page Title">
89<meta name="twitter:description" content="Page Description">
90<meta name="twitter:image" content="https://example.com/image.jpg">
91
92<!-- Viewport -->
93<meta name="viewport" content="width=device-width, initial-scale=1">
94
95<!-- Robots -->
96<meta name="robots" content="index, follow">
97```
98
99### Schema Markup
100- **Article Schema**: For blog posts and news articles
101- **Product Schema**: For e-commerce product pages
102- **Local Business Schema**: For local business listings
103- **FAQ Schema**: For frequently asked questions
104- **Review Schema**: For customer reviews and ratings
105- **Breadcrumb Schema**: For navigation breadcrumbs
106
107## Link Building Strategies
108
109### Internal Linking
110- **Content Hubs**: Create pillar pages linking to related content
111- **Contextual Links**: Link within content where relevant
112- **Anchor Text**: Use descriptive, keyword-rich anchor text
113- **Link Depth**: Keep important content within 3 clicks from homepage
114- **Orphan Pages**: Ensure all pages have internal links pointing to them
115
116### External Linking
117- **Authoritative Sources**: Link to high-quality, relevant websites
118- **No-Follow**: Use rel="nofollow" for sponsored or untrusted links
119- **Link Relevance**: Ensure external links are contextually relevant
120- **Broken Links**: Regularly check for and fix broken external links
121
122### Backlink Acquisition
123- **Content Marketing**: Create link-worthy content (guides, studies, infographics)
124- **Guest Posting**: Write articles for reputable industry publications
125- **Digital PR**: Pitch stories to journalists and publications
126- **Broken Link Building**: Find and replace broken links on relevant sites
127- **HARO**: Respond to journalist queries for expert quotes
128- **Resource Pages**: Get listed on relevant resource pages
129
130### Link Quality Indicators
131- **Domain Authority**: Higher DA indicates stronger authority
132- **Relevance**: Links from relevant, industry-related sites
133- **Placement**: Links within content are more valuable than footers/sidebars
134- **Anchor Text**: Natural, varied anchor text is better than exact-match
135- **Traffic**: Links from sites with real traffic are more valuable
136
137## Technical SEO
138
139### Site Speed
140- **Page Load Time**: Target under 3 seconds
141- **Image Optimization**: Compress and lazy-load images
142- **Minification**: Minify CSS, JavaScript, and HTML
143- **Caching**: Implement browser and server caching
144- **CDN**: Use content delivery network for global performance
145
146### Mobile Optimization
147- **Responsive Design**: Ensure mobile-friendly layout
148- **Mobile-First Indexing**: Google primarily uses mobile version for indexing
149- **Touch Targets**: Buttons and links should be at least 48x48 pixels
150- **Font Size**: Minimum 16px for body text on mobile
151- **Viewport**: Properly configured viewport meta tag
152
153### URL Structure
154- **Clean URLs**: Use readable, hyphen-separated URLs
155- **Keywords**: Include primary keyword in URL
156- **Length**: Keep URLs under 100 characters
157- **Lowercase**: Use lowercase letters consistently
158- **Redirects**: Properly implement 301 redirects for URL changes
159
160### XML Sitemap
161- **Include**: All important pages in sitemap
162- **Exclude**: No-index pages, duplicate content, low-value pages
163- **Priority**: Set priority based on page importance (0.1-1.0)
164- **Frequency**: Set changefreq based on update frequency
165- **Submit**: Submit sitemap to Google Search Console and Bing Webmaster Tools