0
0
SEO Fundamentalsknowledge~30 mins

Search intent types (informational, navigational, transactional) in SEO Fundamentals - Mini Project: Build & Apply

Choose your learning style9 modes available
Understanding Search Intent Types
📖 Scenario: You are working on a website and want to understand why people search for different things on search engines. Knowing the type of search intent helps you create better content that matches what users want.
🎯 Goal: Build a simple list of search intent types with examples and descriptions to understand how to identify informational, navigational, and transactional searches.
📋 What You'll Learn
Create a dictionary called search_intents with three keys: informational, navigational, and transactional
Add a short description for each intent type as the value
Create a variable called example_queries that holds a list of example search queries for each intent type
Add a final summary string called summary that explains why knowing search intent is useful
💡 Why This Matters
🌍 Real World
Understanding search intent helps marketers and website owners create content that matches what users want, improving search rankings and user satisfaction.
💼 Career
SEO specialists, content creators, and digital marketers use search intent knowledge to optimize websites and campaigns effectively.
Progress0 / 4 steps
1
Create the search intent dictionary
Create a dictionary called search_intents with these exact keys and descriptions: 'informational': 'Searches looking for information or answers', 'navigational': 'Searches aiming to find a specific website or page', and 'transactional': 'Searches intending to complete a purchase or action'.
SEO Fundamentals
Need a hint?

Use a dictionary with keys exactly as 'informational', 'navigational', and 'transactional'.

2
Add example queries for each intent type
Create a variable called example_queries that is a dictionary with the same keys as search_intents. Each key should have a list of three example search queries as strings that match the intent type exactly.
SEO Fundamentals
Need a hint?

Use a dictionary with lists of strings for each intent type.

3
Explain why knowing search intent is useful
Create a string variable called summary that explains in simple words why understanding search intent helps website owners create better content and improve user experience.
SEO Fundamentals
Need a hint?

Write a simple sentence about the importance of search intent.

4
Combine all parts into a final overview
Combine the search_intents dictionary, the example_queries dictionary, and the summary string into a single dictionary called search_intent_overview with keys 'intents', 'examples', and 'summary' respectively.
SEO Fundamentals
Need a hint?

Use a dictionary with keys 'intents', 'examples', and 'summary' linking to the existing variables.