SUPERCHARGE YOUR ONLINE VISIBILITY! CONTACT US AND LET’S ACHIEVE EXCELLENCE TOGETHER!
T5 or Text-to-Text Transfer Transformer, a powerful AI model, to automate and improve SEO tasks by treating everything as a text conversion problem. This means we can take website content, process it, and generate better versions to help with search engine rankings.
What is T5?
T5 (Text-to-Text Transfer Transformer) is a powerful AI language model developed by Google, designed to process and generate human-like text. It is built using a Transformer-based architecture, which allows it to understand the structure of language efficiently.
Unlike traditional AI models that are trained for specific tasks, T5 treats every NLP (Natural Language Processing) problem as a text-to-text transformation. This means whether the task is summarization, content rewriting, translation, or keyword extraction, T5 can handle it all using a single model—as long as the correct input instruction is given.
For example, if we provide the instruction “Summarize:” before a paragraph, T5 will generate a concise summary. Similarly, if we use “Rewrite for SEO:”, it will rewrite the content to make it more optimized for search engines.
By leveraging this approach, we can automate and improve various SEO tasks, such as content rewriting, summarization, meta description generation, and keyword extraction—helping websites perform better on search engines.
What is Transformer:
T5 is built on the Transformer architecture, a deep learning model introduced by Google in 2017. Transformers have revolutionized NLP by enabling AI to process words in relation to all the other words in a sentence, rather than just one at a time.
How Does the Transformer Work?
The Transformer model consists of two main parts:
Encoder: This part reads the input text, processes it, and extracts meaningful features.
Decoder: The processed information is then passed to the decoder, which generates new text based on the given instruction.
T5 follows this encoder-decoder structure, allowing it to take in a text prompt and produce a meaningful output that aligns with the user’s request. The “text-to-text” format means that everything—whether summarization, translation, or keyword extraction—is treated as a single input-output text conversion task.
How Does T5 Work?
Think of T5 like a smart assistant that can take any text, process it, and return a modified version based on instructions. It works in three simple steps:
· Input: We give T5 a command along with some text.
- Example: “Summarize: SEO helps websites rank higher on Google…”
· Processing: T5 understands the text and follows the given command.
· Output: It generates a meaningful response.
- Example: “SEO improves website rankings on Google.”
Since T5 is limited to processing only 512 tokens at a time, we split long content into smaller chunks and combine results properly when needed.
Importance of T5 in Search Engines and SEO
How We Are Using T5 for SEO We are applying T5 to real-world SEO tasks to help websites perform better on search engines like Google.
· Content Optimization (Rewriting for SEO)
o T5 rewrites website content to make it more engaging, readable, and search engine-friendly.
o Helps improve rankings by using better keywords, sentence structure, and readability.
· Summarization (Creating Shorter, Easy-to-Read Versions)
o T5 can take a long article and summarize it into a short, clear version.
o Useful for blog previews, article summaries, and knowledge-sharing.
· Generating SEO Meta Descriptions
o A meta description is a short summary of a webpage that appears in Google search results.
o T5 can automatically generate these descriptions to make them attractive and clickable.
· Extracting Keywords for SEO
o T5 can analyze content and find the most important keywords that should be targeted for better search rankings.
o Helps in keyword research and content strategy.
How Are We Using T5 for SEO?
We are implementing T5 from the transformers module (developed by Hugging Face) to automate various SEO tasks efficiently. Hugging Face provides an easy-to-use library for working with Transformer-based AI models, allowing us to use T5 without needing to train it from scratch.
Our approach involves loading a pre-trained T5 model, feeding it specific SEO-related prompts, and extracting useful outputs. The four main SEO tasks we are automating include:
1. Content Optimization (SEO Rewriting)
Website content needs to be engaging, structured, and keyword-rich for better rankings on search engines like Google. T5 helps by rewriting existing content to be more readable, optimized, and relevant.
- Uses semantic understanding to improve sentence flow
- Inserts important keywords naturally without keyword stuffing
- Enhances readability and makes the content more appealing to readers
Example
Input: “Rewrite for SEO: Our company provides eco-friendly skincare solutions with organic ingredients.”
Output: “Discover sustainable skincare solutions made with 100% organic ingredients for a healthier, greener beauty routine.”
2. Summarization (Generating Concise Content)
Long articles can be hard for users to read, and search engines prefer well-structured, concise content. T5 helps by summarizing long texts into shorter, more digestible versions.
- Makes blog posts easier to read and understand
- Helps create quick article previews and social media captions
- Improves user engagement and dwell time
Example
Input: “Summarize: Search Engine Optimization (SEO) helps improve website visibility on Google by optimizing content, using keywords, and improving site speed.”
Output: “SEO boosts website visibility by optimizing content and improving site performance.”
3. Generating SEO-Friendly Meta Descriptions
Meta descriptions are short text snippets that appear under search results in Google. A well-crafted meta description can increase click-through rates (CTR) and improve rankings.
- Ensures descriptions are under 160 characters (Google’s limit)
- Makes them engaging and keyword-rich
- Helps drive more organic traffic to the website
Example
Input: “Generate Meta Description: Learn how to rank higher on Google with SEO strategies, including keyword optimization and backlink building.”
Output: “Improve your Google rankings with expert SEO tips on keyword optimization and backlinks.”
Extracting Keywords for SEO
T5 can analyze text and identify the most important keywords, making it useful for SEO strategy and content planning.
- Extracts relevant, high-ranking keywords
- Helps create better-optimized blog posts
- Assists in keyword research for SEO campaigns
Example
Input: “Extract keywords: Our company specializes in handcrafted wooden furniture made from sustainable oak and teakwood.”
Output: “handcrafted furniture, sustainable wood, oak, teakwood”
Understanding the Key Libraries Used in the Project
In our project, we use several important libraries that help us implement T5 for SEO automation. These libraries handle different tasks such as web scraping, deep learning, and natural language processing (NLP). Below, we explain three key libraries—Requests, Torch, and Hugging Face Transformers—in a question-answer format for easy understanding.
1. Requests Library
1: What is the requests library?
The requests library is a popular Python module used for sending HTTP requests to websites and retrieving data. It is commonly used in web scraping, API calls, and automation tasks.
2. Why do we need requests in our project?
Since we are working with real-world website content, we need a way to fetch web pages to extract text for SEO analysis. The requests library allows us to:
- Retrieve webpage content (HTML, JSON, or text)
- Automate data collection from multiple sources
- Integrate with APIs that provide useful SEO data
3. How are we using requests in our project?
We use requests to scrape blog articles and web pages that we then optimize using T5.
First, we send a request to a website.
Then, we retrieve the HTML content and extract text using BeautifulSoup.
Finally, we feed this content into our T5 model for processing (e.g., summarization, rewriting).
2. Torch (PyTorch Library)
1. What is torch (PyTorch)?
PyTorch is an open-source deep learning framework developed by Facebook AI. It is widely used for machine learning, NLP, and AI model training. The core PyTorch library is torch, which provides the foundation for building and running neural networks.
2. Why do we need torch in our project?
We are using the T5 model, which is a deep learning-based transformer model. PyTorch (torch) is required because:
- T5 is implemented using deep learning models that require PyTorch
- It provides tools to load, run, and fine-tune T5 efficiently
- It allows our program to use GPU acceleration for faster processing
3. How are we using torch in our project?
We use PyTorch to load the T5 model and process input data. Without torch, we wouldn’t be able to run the T5 model efficiently.
3. Hugging Face Transformers Library
1. What is Hugging Face’s transformers library?
The transformers library, developed by Hugging Face, provides pre-trained AI models for NLP tasks like text summarization, translation, and question-answering. It allows us to use state-of-the-art Transformer models (like T5, BERT, and GPT) with minimal setup.
2. Why do we need the transformers library in our project?
- It provides pre-trained T5 models, so we don’t need to train them from scratch
- It allows us to easily generate text for SEO-related tasks
- It is optimized for handling large text-based applications
3. How are we using transformers in our project?
We are using transformers to load and apply the T5 model for various SEO tasks such as:
- Summarizing long articles
- Rewriting content for better search ranking
- Generating SEO-friendly meta descriptions
- Extracting keywords for optimization
Explanation
url = “https://thatware.co/”: Defines the target webpage URL to scrape.
requests.get(url): Sends an HTTP GET request to fetch the webpage content. The response contains the HTML of the page.
Explanation
response.text: Extracts the raw HTML content from the HTTP response.
BeautifulSoup(response.text, ‘html.parser’): Converts the raw HTML into a structured format that can be easily searched and modified.
Why We Need It?
The raw HTML of a webpage contains a mix of text, images, links, and scripts. We use BeautifulSoup to extract only the relevant text content for processing.
Explanation
soup.find_all(‘p’): Finds all <p> elements in the HTML, which contain the main text of the article.
[para.get_text() for para in paragraphs]:
Uses list comprehension to iterate over each <p> element.
para.get_text() extracts only the text, removing HTML tags.
The result is a list of paragraph texts.
Explanation
‘ ‘.join([…]): Joins all paragraphs into a single string, separated by spaces.
Example
If the webpage has:
<p>This is paragraph 1.</p>
<p>This is paragraph 2.</p>
<p>This is paragraph 3.</p>
The extracted text will be:
“This is paragraph 1. This is paragraph 2. This is paragraph 3.”
Explanation
re.sub(r'[^a-zA-Z\s]’, ”, text_content):
r'[^a-zA-Z\s]’: This pattern means “keep only letters (A-Z, a-z) and spaces, remove everything else”.
re.sub(…, ”, text_content): Replaces all unwanted characters with an empty string (”), effectively removing them.
Example
Input: “Hello, World! 2023 is great.” Output: “Hello World is great”
Why We Need It?
Web content often contains punctuation, numbers, and special characters that are not useful for text analysis.
Cleaning the text ensures better performance when applying NLP models like T5.
Explanation
Converts all text to lowercase to maintain consistency.
Example
Input: “SEO Optimization Helps Websites Rank Higher.”
Output: “seo optimization helps websites rank higher.”
Why We Need It?
NLP models treat uppercase and lowercase words separately. Lowercasing makes processing more efficient.
Explanation
from transformers import T5Tokenizer, T5ForConditionalGeneration:
Imports the tokenizer T5Tokenizer (for text preprocessing).
Imports the model T5ForConditionalGeneration (for text generation tasks).
T5Tokenizer.from_pretrained(“t5-small”): Loads a pre-trained tokenizer for T5-small.
T5ForConditionalGeneration.from_pretrained(“t5-small”): Loads the T5 model for text generation.
Why We Need It?
The tokenizer converts text into numerical tokens.
The model processes these tokens to generate new text (e.g., summaries, rewrites, or meta descriptions).
Function explanation: get_url_data(url)
Purpose:
Extracts and processes content from a webpage.
How It Works:
Sends an HTTP request to fetch the web page.
Extracts the title and paragraph texts using BeautifulSoup.
Cleans the extracted content by removing unnecessary HTML tags, scripts, and extra whitespace.
Returns the processed text content of the webpage.
Why It Matters:
This function is essential for web scraping because it converts raw webpage content into clean, readable text that can be further processed using T5.
Function explanation: normalize_text(text)
Purpose: Converts text into a standardized format.
**How It Works:
Converts text to lowercase.
Removes special characters (punctuation, symbols, etc.).
Why It Matters:
Normalization helps in ensuring consistency, which is vital for machine learning models to understand text effectively.
Function explanation: remove_stopwords(text)
Purpose: Removes common English stopwords (e.g., “the”, “is”, “in”).
How It Works:
Uses the NLTK stopwords list to identify and remove unimportant words.
Why It Matters:
Stopwords don’t add much meaning in SEO optimization, summarization, or keyword extraction. Removing them improves model performance and reduces noise.
Function explanation: preprocess_text(content)
Purpose:
Applies cleaning, normalization, and stopword removal in a single step.
How It Works:
Calls clean_text(), normalize_text(), and remove_stopwords().
Returns fully processed text.
Why It Matters:
This function ensures text is properly formatted before passing it to T5 for SEO tasks.
Function explanation: split_text(text, chunk_size=500)
Purpose:
Splits large text into manageable chunks for processing.
How It Works:
Breaks the text into chunks of 500 characters while preserving sentence structure.
Why It Matters:
T5 has a token limit (512 tokens). Splitting large content ensures the model can process long text without truncation issues.
Function explanation: process_large_text(text, t5_function, chunk_size=500)
Purpose:
Applies a T5 function to large text by splitting it into smaller chunks.
How It Works:
Uses split_text() function to divide the text.
Applies the T5 function (e.g., summarization, SEO optimization) to each chunk.
Merges the processed chunks into one final output.
Why It Matters:
Prevents truncation errors when dealing with long-form content.
Function explanation: process_short_task(text, t5_function)
Purpose:
Handles short text processing without chunking.
How It Works:
Truncates text to 512 tokens (if needed).
Passes it to the T5 function directly.
Why It Matters:
Useful for short text tasks like meta descriptions, keyword extraction, or short summaries.
Function explanation: optimize_seo_content(text)
Purpose:
Rewrites content to be SEO-friendly. How It Works:
Creates a content optimization prompt. tokenize the prompt. sends the tokenized prompt to the model. get the model response and returns the output token decoded as a text
Returns a rewritten, optimized version of the input text.
Why It Matters:
Improves readability, keyword density, and search engine rankings.
Function explanation: summarize_long_text(text)
Purpose:
Summarizes long content recursively.
How It Works:
Calls process_long_text() using a summarization prompt for T5.
Returns a shortened version of the content.
Why It Matters:
This function is critical for SEO content compression without losing essential information.
Function explanation: summarize_content(text)
Purpose:
Generates an SEO-optimized summary. How It Works:
Creates a summarization prompt. tokenize the prompt. sends the tokenized prompt to the model. get the model response and returns the output token decoded as a text
Why It Matters:
Helps in creating concise, engaging content for SEO, blogs, and marketing materials.
Function explanation: generate_meta_description(text)
Purpose:
Creates SEO-friendly meta descriptions. How It Works:
Creates a meta description prompt. tokenize the prompt. sends the tokenized prompt to the model. get the model response and returns the output token decoded as a text.
Why It Matters: Meta descriptions improve CTR (Click-Through Rate) and search visibility.
extract_keywords(text) Purpose:
Extracts top keywords for SEO. How It Works:
Creates a keyword extraction prompt. tokenize the prompt. sends the tokenized prompt to the model. get the model response and returns the output token decoded as a text
Why It Matters:
Keyword extraction helps optimize content for ranking in search engines.
The T5 model plays a crucial role in transforming raw website content into SEO-optimized, structured, and engaging text. The function optimize_seo_content() enhances readability, improves keyword placement, and refines the overall flow of the content to align with modern SEO strategies.
keyboard_arrow_down
How T5 Improved the Content
· Rewriting for Clarity & Engagement
o The model restructured long and unorganized content into a concise, professional, and reader-friendly format.
o Complex sentences were broken down for better readability while maintaining the original intent and key information.
· Enhancing SEO Structure & Flow
o T5 ensured a logical progression of ideas, making the content more engaging and easy to follow.
o It refined sentence construction to improve comprehension and reduce redundancy.
· Improved Keyword Emphasis
o The optimization process enhanced the natural incorporation of SEO-friendly phrases, ensuring that the content is aligned with search engine ranking factors.
o Important industry-related terms were subtly reinforced for better discoverability.
· Professional & Scalable Optimization
o The output was rewritten in a more authoritative and polished style, making it suitable for blogs, website copy, and marketing materials.
o The scalable nature of the transformation allows businesses to apply similar optimizations across multiple pieces of content effortlessly.
What is the Output?
The output you received is an SEO-optimized version of your content generated by the T5 model.
SEO-Optimized Content
T5 has rewritten your original text to enhance clarity, readability, and search engine visibility. The new version is designed to improve engagement, keyword placement, and overall content flow while ensuring that it remains informative and professional.
What Does This Output Mean?
1. Improved Readability and Structure
o The optimized content is more concise and well-structured, making it easier for both search engines and readers to understand.
o Sentences are refined to remove redundancy, making the content more direct and engaging.
2. Enhanced Keyword Optimization
o The rewritten text ensures that important SEO keywords are naturally integrated without overstuffing.
o This helps search engines better understand the main topic and relevance of the content.
3. Professional and Engaging Tone
o The optimization process polishes the writing style, making it more authoritative and compelling.
o The revised content feels more trustworthy and informative, increasing user retention and engagement.
Understanding Optimized Content and SEO Impact
What is Optimized Content?
Optimized content is a refined version of your original text, rewritten in a way that aligns with SEO best practices while maintaining the core message. It ensures that:
- The content is easy to read and navigate.
- Important keywords are used effectively.
- The text remains engaging and informative.
How Can You Use This Optimized Content?
Once you receive the SEO-optimized output, you can:
- Publish it on your website to improve rankings.
- Compare it with the original to analyze improvements in readability and keyword focus.
- Use it as a reference to enhance future content creation.
How to Interpret and Use the Optimized Content?
1. Understanding the Improvements
- Before Optimization: The original content may have been lengthy, unfocused, or lacking in keyword emphasis.
- After Optimization: The revised version is cleaner, more structured, and better optimized for search engines.
2. Comparing Before and After
Example of an optimized sentence transformation:
- Before: “The digital landscape is evolving at an unprecedented pace, making SEO a constantly shifting field.”
- After: “SEO is rapidly evolving, requiring businesses to adapt to digital changes.”
The optimized version is shorter, clearer, and more impactful, while keeping the core meaning intact.
3. How Does This Help Your Website?
- Higher Search Engine Rankings: Clearer, keyword-rich content improves Google’s understanding of your page.
- Better User Engagement: Visitors stay longer when content is easier to read.
- Increased Conversion Rates: Well-structured content builds trust and encourages action.
What Should You Do Next?
1. Implement the Optimized Content Replace the existing text with the new, optimized version to improve rankings and engagement.
2. Monitor SEO Performance Track key metrics such as organic traffic, bounce rate, and keyword rankings to measure the impact of optimized content.
3. Apply Optimization to Other Pages Use the same optimization strategy for other sections of your website to ensure a consistent SEO-friendly approach.
By leveraging T5’s SEO optimization, your content becomes more structured, professional, and search engine-friendly—giving your website a competitive edge.
What is the Output?
The output you received is a summarized version of your original content using the T5 model.
Summarized Content
T5 has distilled the key points from the original text into a shorter, more concise version while maintaining the core message. This summary focuses on essential SEO metrics and their importance in adapting to industry changes.
What Does This Output Mean?
1. Extracting the Most Important Information
- The model removes unnecessary details and redundancy, ensuring that only the most critical points are retained.
- This makes the content easier to digest for readers while still delivering the essential message.
2. Improved Clarity and Readability
- The summarized version presents a direct and to-the-point explanation of SEO success factors.
- It simplifies complex information, making it more accessible to users.
3. Faster Content Consumption
- In today’s fast-paced digital world, concise summaries help users quickly grasp key insights.
- This is especially beneficial for SEO professionals, decision-makers, and readers looking for quick takeaways.
Understanding Summarized Content and SEO Impact
What is Summarized Content?
Summarized content is a shortened version of a longer text, retaining the most important details while removing extra words or repetitive information.
Why is summarization useful?
- Better user engagement: Readers quickly find what they need.
- Improved SEO performance: Search engines favor well-structured, informative content.
- Higher readability scores: Easier-to-read content ranks better and retains users longer.
How Can You Use This Summarized Content?
Once you receive the summarized output, you can:
- Use it as a meta description or introduction to your article.
- Include it as a summary section for quick takeaways.
- Repurpose it for social media posts, featured snippets, or FAQs.
How to Interpret and Use the Summarized Content?
Understanding the Condensed Message
Before Summarization: The original text was lengthy and covered multiple SEO concepts.
After Summarization: The new version focuses on tracking key SEO metrics to stay competitive.
Example of transformation
Before: “SEO is constantly changing due to AI-driven search, user behavior shifts, and frequent algorithm updates. Businesses must move beyond just tracking keyword rankings and organic traffic. Instead, they should focus on key indicators such as share of search, core web vitals, AI-powered search performance, and user engagement signals.”
After: “SEO success depends on monitoring key indicators such as share of search. Tracking the right SEO metrics ensures brands stay agile and adapt to these changes.”
The key ideas remain intact, but the wording is more efficient and impactful.
How Does This Help Your Website?
· Enhances user experience by reducing text overload.
· Improves SEO rankings by ensuring clear, informative content.
· Supports voice search and featured snippets, as search engines prefer concise, authoritative answers.
What Should You Do Next?
1. Implement the Summary in Key Areas
- Use it as an introductory paragraph or executive summary for your article.
- Feature it in meta descriptions to improve click-through rates.
- Use it for social media posts or marketing materials.
2. Ensure the Summary Reflects Your Goals
- If the model misses critical points, consider refining the input or combining multiple summaries.
- If a longer version is needed, use the summary as a foundation and add more details manually.
3. Apply Summarization to Other Content
- Summarized content is ideal for blog introductions, report highlights, and FAQ sections.
- You can apply the same process to other website sections to make content more reader-friendly.
By using T5’s summarization, you simplify content, improve readability, and enhance SEO performance—ensuring that users and search engines quickly grasp the most important information.
What is the Output?
The output you received is a meta description generated using the T5 model.
Generated Meta Description:
“And digital marketing are changing at an unprecedented pace. SEO success depends on monitoring key indicators such as share of search, core web vital…”
This output is concise but truncated, meaning the model may have cut off part of the response. However, it still captures the core SEO message—highlighting the importance of key performance indicators.
Why This Matters for the Website Owner?
Meta Descriptions Impact Click-Through Rates (CTR)
A well-crafted meta description can:
- Increase organic CTR: Encourages more users to click your link.
- Improve search visibility: Google often pulls meta descriptions into search results.
- Provide clarity: Helps users understand what the page is about before clicking.
Helps Search Engines Rank Your Page Correctly
Search engines use meta descriptions to determine page relevance. A good description should:
- Include primary keywords naturally.
- Stay within 150-160 characters (to avoid truncation).
- Provide a compelling reason for users to visit your page.
Enhances Social Sharing & Preview Links
When a page is shared on Facebook, LinkedIn, Twitter, etc., the meta description appears as the preview text. A clear and engaging description can increase engagement and drive traffic from social media.
What Should the Client Do?
Refine the Meta Description
· Ensure it doesn’t get truncated—keep it within 150-160 characters.
· nclude the most important SEO keywords naturally.
· Make it actionable—use words like discover, learn, improve, optimize.
Test Multiple Meta Descriptions
· A/B test different variations in Google Search Console to see which one drives the best CTR.
· Try different wording styles—questions vs. direct statements.
Use Meta Descriptions for Social Media & Paid Ads
· A good meta description can double as ad copy for Google Ads or Facebook Ads.
· Shortened versions work well in social media post captions.
What is the Output?
The output you received is a list of extracted keywords from the content using the T5 model:
Extracted Keywords:
“remain competitive, optimize their digital presence, and capitalize on emerging trends. Share of search is calculated by taking the total search volume for a brand’s targeted keywords…”
Why This Matters for the Website Owner?
Keyword Extraction Helps Improve SEO Strategy
Extracting high-impact SEO keywords from content allows website owners to:
- Identify core topics their content is ranking for.
- Understand search intent and whether they are targeting the right keywords.
- Optimize content with strategic keyword placement (headings, meta descriptions, body text).
Helps in Competitive Analysis
By extracting targeted SEO keywords, you can:
- Compare them with competitor keywords to find gaps.
- Discover new trends in the industry.
- Adjust content strategy based on what’s driving organic traffic.
Improves PPC & Paid Campaign Targeting
The extracted keywords can also be used for:
- Google Ads & PPC campaigns (targeting high-performing keywords).
- Content clustering (creating topic-specific blogs based on keyword relevance).
- Internal linking strategies (linking relevant content based on keyword themes).
What Should the Client Do?
Refine the Extracted Keywords
- Instead of extracting long phrases, focus on short, high-intent keywords.
- Ensure that keywords align with search queries users are likely to type.
- Consider using SEO tools (Ahrefs, SEMrush, Google Search Console) for additional validation.
Use Keywords Strategically
Place them naturally in:
- Title tags & meta descriptions
- H1, H2, and H3 headings
- Alt text for images
- Anchor text in internal links
Check for Missing High-Impact Keywords
· Run the extracted keywords against Google Trends or Keyword Planner to see if they align with search volume and competition levels.
· Identify long-tail keywords that can improve ranking in niche searches.
Final Thoughts
Keyword extraction is a crucial step in optimizing SEO content. AI-driven tools like T5 help automate the process. By focusing on high-impact, relevant keywords, website owners can improve organic reach, refine content strategy, and drive better search performance.
Thatware | Founder & CEO
Tuhin is recognized across the globe for his vision to revolutionize digital transformation industry with the help of cutting-edge technology. He won bronze for India at the Stevie Awards USA as well as winning the India Business Awards, India Technology Award, Top 100 influential tech leaders from Analytics Insights, Clutch Global Front runner in digital marketing, founder of the fastest growing company in Asia by The CEO Magazine and is a TEDx speaker and BrightonSEO speaker.