SlideShare uma empresa Scribd logo
1 de 63
Baixar para ler offline
Developing Stronger
Technical SEO Skills
Mike Osolinski | iTech Media
SLIDESHARE.NET/MikeOsolinski
@Fearless_Shultz
AGENDA
What is Technical SEO?
Why Should You Bother Learning?
Where Should You Start?
Nice to Have
Next Steps
Initiatives for Employers
Resources
@Fearless_Shultz #BrightonSEO
The aim of this
presentation is to help
guide you on deciding a
learning path rather than
giving specific tech SEO
tips. It’s also not an
exhaustive list
@Fearless_Shultz #BrightonSEO
* It’s also just my opinion ☺
So What is “Technical SEO”?
@Fearless_Shultz #BrightonSEO
It Depends…
Page Speed Performance
Rendering Issues
Internal Link Analysis
Crawling and Indexing
Content Analysis
Security
Structured Data
@Fearless_Shultz #BrightonSEO
So Why Should You Care?
@Fearless_Shultz #BrightonSEO
@Fearless_Shultz #BrightonSEO
https://twitter.com/adoubleagent
@Fearless_Shultz #BrightonSEO
https://twitter.com/Adoubleagent/status/1419968445396004865
I think…
The smarter Google tries to get, the more
help they need (for now)
@Fearless_Shultz #BrightonSEO
• Disavow files
• Schema
• Hreflang
• Canonicals
• Server Side Rendering
So Where Should I start?
@Fearless_Shultz #BrightonSEO
@Fearless_Shultz #BrightonSEO
It Depends
kinda…..
@Fearless_Shultz #BrightonSEO
How the Internet
& Web* Work
TCP / IP
HTTP
DNS Configuration
Familiarity with RFCs
Proxies and Reverse Proxies
@Fearless_Shultz #BrightonSEO
* Not the same thing
@Fearless_Shultz #BrightonSEO
https://www.dummies.com/programming/networking/network-administration-tcpip-protocol-
framework/
@Fearless_Shultz #BrightonSEO
https://www.ayima.com/uk/insights/seo/redirect-checker.html
@Fearless_Shultz #BrightonSEO
https://datatracker.ietf.org/doc/html/rfc6596
The mission of the IETF
is to make the Internet
work better by
producing high
quality, relevant
technical documents
that influence the way
people design, use,
and manage the
Internet.
https://www.ietf.org/about/mission/
@Fearless_Shultz #BrightonSEO
https://moz.com/blog/what-is-a-reverse-proxy-and-how-can-it-help-my-seo
Deal with Subdomains
Understand how Cloudflare
works and identify issues
Solidify understanding of
how the web works
@Fearless_Shultz #BrightonSEO
http://infolab.stanford.edu/~backrub/google.html
https://seonorth.ca/search-patents/googles-reasonable-surfer-model/
@Fearless_Shultz #BrightonSEO
https://www.youtube.com/watch?v=iJPu4vHETXw&t=580s
What Next?
@Fearless_Shultz #BrightonSEO
@Fearless_Shultz #BrightonSEO
@Fearless_Shultz #BrightonSEO
What Should You Know?
Basic understanding of the structure of a HTML document
and the ability to write at least a basic HTML page from
scratch
Why Should You Know it?
Being able to manually identify issues that many tools might
not catch as well as being able to understand why Search
Engines display certain SERPs in a particular way. Also better
ability to communicate with dev teams who may not be
aware of issues that impact crawling
@Fearless_Shultz #BrightonSEO
<!doctype html>
<html>
<head>
<title>My Awesome Page</title>
<link rel="stylesheet" type="text/css"
href="https://example.com/stylesheet.css" />
<div class="contentDiv" id="contentDivID"></div>
<meta name="description" content="This is a description of my awesome
page!" />
<iframe src="https:/example.com/include.html" title="iframe-
include"></iframe>
<link rel="canonical" href="https://example.com/awesome-page" />
<link rel="alternate" hreflang="en-gb"
href="https://example.com/awesome-page" />
<link rel="alternate" hreflang="en-us" href="https://example.com/en-
us/awesome-page" />
</head>
<body>
this is the body of the page
</body>
</html>
@Fearless_Shultz #BrightonSEO
<!doctype html>
<html>
<head>
<title>My Awesome Page</title>
<link rel="stylesheet" type="text/css" href="https://example.com/stylesheet.css" />
<div class="contentDiv" id="contentDivID"></div>
<meta name="description" content="This is a description of my awesome page!" />
<iframe src="https:/example.com/include.html" title="iframe-include"></iframe>
<link rel="canonical" href="https://example.com/awesome-page" />
<link rel="alternate" hreflang="en-gb" href="https://example.com/awesome-page" />
<link rel="alternate" hreflang="en-us" href="https://example.com/en-us/awesome-
page" />
</head>
<body>
this is the body of the page
</body>
</html>
http://www.thesempost.com/avoid-non-head-html-tags-head-section-pages/
@Fearless_Shultz #BrightonSEO
What Should You Know?
Understand what the potential issues are that JavaScript
could present to search engines, how to check for issues at a
high level. Learning to read and write JS can come at a later
stage.
Why Should You Know it?
Being able to think about potential issues even if you don’t
fully understand why they might occur yet and being able to
better communicate with dev teams to make sure problems
don’t occur at an early stage.
@Fearless_Shultz #BrightonSEO
@Fearless_Shultz #BrightonSEO
https://developers.google.com/search/docs/advanced/guidelines/links-crawlable
https://www.seroundtable.com/google-data-href-attributes-links-25926.html
• Lack of anchor text
• Google may not crawl
• Potential issues if JS times out
Another caveat. Things change. Run your own tests
@Fearless_Shultz #BrightonSEO
Be aware of the different frameworks that exist and the
differences between them
@Fearless_Shultz #BrightonSEO
What Should You Know?
What CSS is and how it impacts the display and layout of a
HTML document and the basic syntax of CSS rules and how
historically CSS has been used to serve users a different
experience to search engines.
Why Should You Know?
An understanding of how CSS has been used negatively in
the past to try and trick search engines will give you an
ability to check for potential issues that many tools might
not pick up that might be negatively impacting rankings
@Fearless_Shultz #BrightonSEO
https://moz.com/blog/guide-to-hidden-text
@Fearless_Shultz #BrightonSEO
<style>
.myDivClass
{
background-color:#cecece;
width:300px;
height:300px;
border:1px solid #666666;
margin:20px
align:right;
color:#cecece;
}
</style>
<div class="myDivClass">
Here is all my awesome content!
</>
@Fearless_Shultz #BrightonSEO
<style>
.myDivClass
{
background-color:#cecece;
width:300px;
height:300px;
border:1px solid #666666;
margin:20px
align:right;
color:#cecece;
}
</style>
<div class="myDivClass">
Here is all my awesome content!
</>
And Now?
@Fearless_Shultz #BrightonSEO
@Fearless_Shultz #BrightonSEO
What Should You Know?
Familiarity with the basics of how a webserver functions and
the differences between the main types of server such as
Apache and IIS. In particular how common SEO tasks should
be performed in htaccess or the local variant such as
web.config
Why Should You Know?
Ability to implement redirects and rewrites, make page
speed optimizations, crawling and indexing control. Possibly
most importantly to understand how to read and understand
server log files
@Fearless_Shultz #BrightonSEO
Top Tip – Get Yourself a Raspberry Pi!
• Install Apache / LAMP stack easily and
without conflicting with existing
operating system
• Learn to install and configure JavaScript
frameworks, build test websites etc
without setting up hosting and buying
domains.
• Learn without consequence
Tools of the Tech
SEO Trade
Chrome Dev Tools
Regular Expressions
PowerShell
SEO Tools for Excel
Fuzzy Lookups
@Fearless_Shultz #BrightonSEO
@Fearless_Shultz #BrightonSEO
• Inspecting Elements
• Checking for JavaScript Errors
• User Agent and Device
Switching
• Checking Protocol Usage
https://www.polemicdigital.com/view-source-quickly-compare-raw-html-
rendered-dom/
@Fearless_Shultz #BrightonSEO
(?:(?:rn)?[ t])*(?:(?:(?:[^()<>@,;:".[] 000-
031]+(?:(?:(?:rn)?[ t]
)+|Z|(?=[["()<>@,;:".[]]))|"(?:[^"r]|.|(?:(?:rn)?[
t]))*"(?:(?: rn)?[ t])*)(?:.(?:(?:rn)?[ t])*(?:[^()<>@,;:".[]
000-031]+(?:(?:( ?:rn)?[
t])+|Z|(?=[["()<>@,;:".[]]))|"(?:[^"r]|.|(?:(?:rn)?[
t]))*"(?:(?:rn)?[ t])*))*@(?:(?:rn)?[ t])*(?:[^()<>@,;:".[]
000-0 31]+(?:(?:(?:rn)?[
t])+|Z|(?=[["()<>@,;:".[]]))|[([^[]r]|.)* ](?:(?:rn)?[
t])*)(?:.(?:(?:rn)?[ t])*(?:[^()<>@,;:".[] 000-031]+
(?:(?:(?:rn)?[
t])+|Z|(?=[["()<>@,;:".[]]))|[([^[]r]|.)*](?: (?:rn)?[
t])*))*|(?:[^()<>@,;:".[] 000-031]+(?:(?:(?:rn)?[ t])+|Z
|(?=[["()<>@,;:".[]]))|"(?:[^"r]|.|(?:(?:rn)?[
t]))*"(?:(?:rn) ?[ t])*)*<(?:(?:rn)?[
t])*(?:@(?:[^()<>@,;:".[] 000-031]+(?:(?:(?: rn)?[
t])+|Z|(?=[["()<>@,;:".[]]))|[([^[]r]|.)*](?:(?:rn)?
Pretty straightforward
right?
@Fearless_Shultz #BrightonSEO
Regex or Regular
Expressions are
patterns created to
match a particular
string of characters
https://twitter.com/lilyraynyc/status/1433086975045775363
@Fearless_Shultz #BrightonSEO
https://regexr.com/
@Fearless_Shultz #BrightonSEO
https://seotoolsforexcel.com/
• Easily call APIs without
scripting
• Built in Regex support
• URL analysis
• Build custom scrapers
@Fearless_Shultz #BrightonSEO
https://www.microsoft.com/en-
gb/download/details.aspx?id=15011
@Fearless_Shultz #BrightonSEO
Nice to Have’s
Understanding of different
data formats
Xpath / CSS Path
Ability to call APIs
@Fearless_Shultz #BrightonSEO
@Fearless_Shultz #BrightonSEO
• Recommended
method for
implementing
structured data
• Common API
response format
• Used by many
JavaScript website
frameworks
• Reading and
writing XML
sitemaps
• API calls
• Standard default
output format for
many tools
• Common API
response format
@Fearless_Shultz #BrightonSEO
XPath stands for XML Path. It’s a query
language that helps identify elements from
an XML document. It uses expressions that
navigate into an XML document in a way
that can be traced from the start to the
intended element
Advantages of Using CSS Selector
•It’s faster than XPath.
•It’s much easier to learn and implement.
•You have a high chance of finding your
elements.
•It’s compatible with most browsers to date.
https://www.testim.io/blog/xpath-vs-css-selector-difference-choose/
@Fearless_Shultz #BrightonSEO
A REST API (also known as RESTful API) is an application programming
interface (API or web API) that conforms to the constraints of REST
architectural style and allows for interaction with RESTful web
services. REST stands for representational state transfer and was
created by computer scientist Roy Fielding.
Now You Are Free to Go Wild
@Fearless_Shultz #BrightonSEO
It’s always much easier to decide what
you need to learn if you start with the
problem, find the easiest solution even
if you don’t initially understand exactly
how it works and develop from there
How Can Employers Help Develop
Their Teams?
@Fearless_Shultz #BrightonSEO
• Sunlight Training Budget
• Training Days
• Internal Presentations
• Cross Chapter Collaboration
• Squiggly Careers
• Clearly Defined Growth Maps
iTech Employee Development
@Fearless_Shultz #BrightonSEO
Resources
@Fearless_Shultz #BrightonSEO
@Fearless_Shultz #BrightonSEO
How the Internet Works
https://developer.mozilla.org/en-
US/docs/Learn/Common_questions/How_does_the_Internet_work How the Internet works guide from Mozilla
https://www.cloudflare.com/en-gb/learning/network-layer/how-does-the-internet-
work/ Similar Guide from Cloudflare
https://www.makeuseof.com/difference-between-internet-world-wide-web/ Difference between the Internet and the Web
http://www.steves-internet-guide.com/internet-protocol-suite-explained/ Beginners guide to TCP/IP
https://www.extrahop.co.uk/resources/protocols/http/ How HTTP Works
https://httpstatuses.com/ HTTP status code reference
http://www.steves-internet-guide.com/dns-guide-beginners/ Understanding DNS
https://www.cloudflare.com/en-gb/learning/cdn/glossary/reverse-proxy/ Cloudflare guide to reverse proxies
https://moz.com/blog/what-is-a-reverse-proxy-and-how-can-it-help-my-seo Moz overview of reverse proxies
https://support.cloudflare.com/hc/en-us/articles/231109348-Improving-Google-SEO-
with-Cloudflare Cloudflare SEO
https://www.ietf.org/ Home of the Internet Engineering Task Force
https://www.ietf.org/standards/rfcs/ IETF RFCs
https://www.searchenginejournal.com/content-delivery-network-how-to/406464/ Guide to CDNs
@Fearless_Shultz #BrightonSEO
How Google Works
http://infolab.stanford.edu/~backrub/google.html
Original Stanford paper proposing the idea of
Backrub(Google)
https://www.youtube.com/watch?v=iJPu4vHETXw
How Google works from a ranking engineers
perspective
https://seonorth.ca/search-patents/googles-reasonable-surfer-model/
Difference between random and reasonable surfer
models
https://www.seobythesea.com/2016/04/googles-reasonable-surfer-patent-
updated/ Google Patent change to reasonable surfer model
https://developers.google.com/search/docs/advanced/crawling/large-site-
managing-crawl-budget
Google guidance on managing crawl budget on large
sites
@Fearless_Shultz #BrightonSEO
HTML & CSS
https://www.w3schools.com/html/html_quiz.asp Test Your basic HTML knowledge
https://www.w3schools.com/html/
Learn the basics of HTML for free with W3
Schools
https://www.codecademy.com/learn/learn-html Code Academy HTML Course
https://www.w3.org/TR/html5-diff/
Differences between HTML 4 and 5 ( technical
docs)
https://www.w3schools.com/html/html5_semantic_elements.asp Semantic HTML elements
https://searchengineland.com/seo-advantages-of-machine-readable-html5-semantic-
markup-314455 SEO Specific observations about HTML 5
https://www.w3schools.com/css/css_intro.asp W3 Schools CSS intro
@Fearless_Shultz #BrightonSEO
JavaScript
https://www.w3schools.com/js/ Basic JS tutorial from W3 Schools
https://www.geeksforgeeks.org/difference-between-typescript-and-
javascript/ JavaScript vs TypeScript
https://www.codingninjas.com/blog/2018/12/08/difference-between-a-
programming-language-and-a-scripting-language/ Difference between scripting and programming languages
https://developers.google.com/search/docs/advanced/javascript/javascr
ipt-seo-basics JavaScript basics from Google
https://moz.com/blog/javascript-seo-guide Moz 2021 guide to JavaScipt
https://www.codemotion.com/magazine/dev-hub/javascript/javascript-
frameworks-guide/ Guide to JavaScript frameworks
https://www.searchenginejournal.com/angular-seo-guide/303849/ SEO guide to Angular
https://gorrion.io/blog/angularjs-vs-angular/ Angular vs Angular JS
@Fearless_Shultz #BrightonSEO
Web Servers
https://www.thegeekdiary.com/beginners-guide-to-apache-
http-server/ Beginners guide to Apache
https://www.dnsstuff.com/windows-iis-server-tools Guide to IIS
https://www.danielmorell.com/guides/htaccess-seo htaccess for SEO
https://ignitevisibility.com/the-ultimate-guide-to-htaccess-files-
for-seo/ htaccess for SEO
https://www.bowlerhat.co.uk/301-redirects-for-seo-from-
windows-server-iis Redirects in Windows web.config
https://pimylifeup.com/raspberry-pi-apache/ Setting up Apache on Raspberry Pi
https://projects.raspberrypi.org/en/projects/lamp-web-server-
with-wordpress Build a LAMP Server on Raspberry Pi
@Fearless_Shultz #BrightonSEO
Chrome Dev Tools
https://developer.chrome.com/docs/devtools/ Google intro to Chrome Dev Tools
https://www.searchenginejournal.com/chrome-devtools-seo-
troubleshooting/387494/ SEO troubleshooting with Chrome Dev Tools
https://blog.openreplay.com/the-ultimate-guide-to-fixing-javascript-
performance-problems-in-browser-devtools JavaScript performance issues with Chrome Dev Tools
@Fearless_Shultz #BrightonSEO
Regular Expressions
https://www.hongkiat.com/blog/getting-started-with-regex/ Getting Started with Regex
https://www.sitepoint.com/learn-regex/ Another Regex guide
https://moz.com/blog/an-seos-guide-to-regex SEO Guide to Regex
https://www.jcchouinard.com/regex-for-seo/ Another SEO Guide to Regex
https://regexr.com/ Regex Cheatsheet, pattern storage, community patters etc
https://regex101.com/ Another testing and debugging tool
@Fearless_Shultz #BrightonSEO
Python
https://www.python.org/about/gettingstarted/ Python for Beginners
https://www.jcchouinard.com/python-for-seo/ Python for SEO
https://www.searchenginejournal.com/python-
technical-seo/330515/#close Python for Technical SEO
https://www.dataquest.io/blog/jupyter-notebook-
tutorial/ Guide to using Jupyter Notebooks
@Fearless_Shultz #BrightonSEO
General
https://seotoolsforexcel.com/ Homepage for tool
https://www.slideshare.net/MikeOsolinski/brighton-seo-sept-
2019-powershell PowerShell for Process Automation
https://www.slideshare.net/MikeOsolinski/command-line-
automation-for-repetitive-tasks Command Line Automation
https://moz.com/blog/writing-structured-data-guide SEO Guide to writing JSON
https://moz.com/blog/json-ld-for-beginners Guide to writing JSON-LD
https://builtvisible.com/seo-guide-to-xpath/ SEO Guide to Xpath
https://www.mulesoft.com/resources/api/what-is-an-api What is an API
https://mlsdev.com/blog/81-a-beginner-s-tutorial-for-
understanding-restful-api Starting with APIs
https://projects.raspberrypi.org/en/projects/lamp-web-server-
with-wordpress Installing a LAMP stack on Raspberry Pi
Thank You ☺
http://twitter.com/Fearless_Shultz
https://www.slideshare.net/MikeOsolinski
Check out our careers page at https://itech.media/search

Mais conteúdo relacionado

Mais procurados

Brighton SEO: Self Esteem Optimisation - The most important type of SEO - Lou...
Brighton SEO: Self Esteem Optimisation - The most important type of SEO - Lou...Brighton SEO: Self Esteem Optimisation - The most important type of SEO - Lou...
Brighton SEO: Self Esteem Optimisation - The most important type of SEO - Lou...Louise Ali
 
Brighton SEO 2022: On-page optimization lessons from analyzing over 400 blog ...
Brighton SEO 2022: On-page optimization lessons from analyzing over 400 blog ...Brighton SEO 2022: On-page optimization lessons from analyzing over 400 blog ...
Brighton SEO 2022: On-page optimization lessons from analyzing over 400 blog ...chima mmeje
 
Networking for SEOs (and why it matters)
Networking for SEOs (and why it matters)Networking for SEOs (and why it matters)
Networking for SEOs (and why it matters)GretaKoivikko
 
Creating Search Quality Algorithms - Richard Lawrence - BrightonSEO.pdf
Creating Search Quality Algorithms - Richard Lawrence - BrightonSEO.pdfCreating Search Quality Algorithms - Richard Lawrence - BrightonSEO.pdf
Creating Search Quality Algorithms - Richard Lawrence - BrightonSEO.pdfRichard Lawrence
 
How to automate a long tail SEO strategy for ecommerce
How to automate a long tail SEO strategy for ecommerceHow to automate a long tail SEO strategy for ecommerce
How to automate a long tail SEO strategy for ecommercePierreOlivierDanhaiv1
 
brightonSEO April 2023 - Sarah Presch - The Psychology Behind Inclusive iSEO ...
brightonSEO April 2023 - Sarah Presch - The Psychology Behind Inclusive iSEO ...brightonSEO April 2023 - Sarah Presch - The Psychology Behind Inclusive iSEO ...
brightonSEO April 2023 - Sarah Presch - The Psychology Behind Inclusive iSEO ...Sarah Presch
 
BrightonSEO Slides April 2023
BrightonSEO Slides April 2023BrightonSEO Slides April 2023
BrightonSEO Slides April 2023Cheryl Luzet
 
How to be the ultimate double agent- PR and Link Builder Isa Lavahun BTNSEO S...
How to be the ultimate double agent- PR and Link Builder Isa Lavahun BTNSEO S...How to be the ultimate double agent- PR and Link Builder Isa Lavahun BTNSEO S...
How to be the ultimate double agent- PR and Link Builder Isa Lavahun BTNSEO S...Isa Lavs
 
Probabilistic Thinking in SEO - BrightonSEO October 2022
Probabilistic Thinking in SEO - BrightonSEO October 2022Probabilistic Thinking in SEO - BrightonSEO October 2022
Probabilistic Thinking in SEO - BrightonSEO October 2022Andrew Charlton
 
BrightonSEO 2022.pdf
BrightonSEO 2022.pdfBrightonSEO 2022.pdf
BrightonSEO 2022.pdfIlia Markov
 
Data Driven Approach to Scale SEO at BrightonSEO 2023
Data Driven Approach to Scale SEO at BrightonSEO 2023Data Driven Approach to Scale SEO at BrightonSEO 2023
Data Driven Approach to Scale SEO at BrightonSEO 2023Nitin Manchanda
 
Core Web Vitals Audit - Sophie Gibson - PDF - BrightonSEO.pdf
Core Web Vitals Audit - Sophie Gibson - PDF - BrightonSEO.pdfCore Web Vitals Audit - Sophie Gibson - PDF - BrightonSEO.pdf
Core Web Vitals Audit - Sophie Gibson - PDF - BrightonSEO.pdfSophie Gibson
 
Content Design & its Role in SEO and Accessibility [BrightonSEO Spring 2023]
Content Design & its Role in SEO and Accessibility [BrightonSEO Spring 2023]Content Design & its Role in SEO and Accessibility [BrightonSEO Spring 2023]
Content Design & its Role in SEO and Accessibility [BrightonSEO Spring 2023]Chloe Smith
 
Data Studio for SEOs: Reporting Automation Tips - Weekly SEO with Lazarina Stoy
Data Studio for SEOs: Reporting Automation Tips - Weekly SEO with Lazarina StoyData Studio for SEOs: Reporting Automation Tips - Weekly SEO with Lazarina Stoy
Data Studio for SEOs: Reporting Automation Tips - Weekly SEO with Lazarina StoyLazarinaStoyanova
 
SEO at Scale - BrightonSEO April 2022
SEO at Scale - BrightonSEO April 2022SEO at Scale - BrightonSEO April 2022
SEO at Scale - BrightonSEO April 2022Nitin Manchanda
 
SEO Automation Without Using Hard Code by Tevfik Mert Azizoglu - BrightonSEO ...
SEO Automation Without Using Hard Code by Tevfik Mert Azizoglu - BrightonSEO ...SEO Automation Without Using Hard Code by Tevfik Mert Azizoglu - BrightonSEO ...
SEO Automation Without Using Hard Code by Tevfik Mert Azizoglu - BrightonSEO ...Tevfik Mert Azizoglu
 
Brighton Y U No Reply_Bibi the Link Builder.pdf
Brighton Y U No Reply_Bibi the Link Builder.pdfBrighton Y U No Reply_Bibi the Link Builder.pdf
Brighton Y U No Reply_Bibi the Link Builder.pdfBibi the Link Builder
 
10 most common mistakes when working from home
10 most common mistakes when working from home10 most common mistakes when working from home
10 most common mistakes when working from homeJo Blood
 
Giulia Panozzo | Neuroscience of Search | BrightonSEO April 2023
Giulia Panozzo | Neuroscience of Search | BrightonSEO April 2023Giulia Panozzo | Neuroscience of Search | BrightonSEO April 2023
Giulia Panozzo | Neuroscience of Search | BrightonSEO April 2023GiuliaPanozzo1
 
[BrightonSEO 2022] Unlocking the Hidden Potential of Product Listing Pages
[BrightonSEO 2022] Unlocking the Hidden Potential of Product Listing Pages[BrightonSEO 2022] Unlocking the Hidden Potential of Product Listing Pages
[BrightonSEO 2022] Unlocking the Hidden Potential of Product Listing PagesAreej AbuAli
 

Mais procurados (20)

Brighton SEO: Self Esteem Optimisation - The most important type of SEO - Lou...
Brighton SEO: Self Esteem Optimisation - The most important type of SEO - Lou...Brighton SEO: Self Esteem Optimisation - The most important type of SEO - Lou...
Brighton SEO: Self Esteem Optimisation - The most important type of SEO - Lou...
 
Brighton SEO 2022: On-page optimization lessons from analyzing over 400 blog ...
Brighton SEO 2022: On-page optimization lessons from analyzing over 400 blog ...Brighton SEO 2022: On-page optimization lessons from analyzing over 400 blog ...
Brighton SEO 2022: On-page optimization lessons from analyzing over 400 blog ...
 
Networking for SEOs (and why it matters)
Networking for SEOs (and why it matters)Networking for SEOs (and why it matters)
Networking for SEOs (and why it matters)
 
Creating Search Quality Algorithms - Richard Lawrence - BrightonSEO.pdf
Creating Search Quality Algorithms - Richard Lawrence - BrightonSEO.pdfCreating Search Quality Algorithms - Richard Lawrence - BrightonSEO.pdf
Creating Search Quality Algorithms - Richard Lawrence - BrightonSEO.pdf
 
How to automate a long tail SEO strategy for ecommerce
How to automate a long tail SEO strategy for ecommerceHow to automate a long tail SEO strategy for ecommerce
How to automate a long tail SEO strategy for ecommerce
 
brightonSEO April 2023 - Sarah Presch - The Psychology Behind Inclusive iSEO ...
brightonSEO April 2023 - Sarah Presch - The Psychology Behind Inclusive iSEO ...brightonSEO April 2023 - Sarah Presch - The Psychology Behind Inclusive iSEO ...
brightonSEO April 2023 - Sarah Presch - The Psychology Behind Inclusive iSEO ...
 
BrightonSEO Slides April 2023
BrightonSEO Slides April 2023BrightonSEO Slides April 2023
BrightonSEO Slides April 2023
 
How to be the ultimate double agent- PR and Link Builder Isa Lavahun BTNSEO S...
How to be the ultimate double agent- PR and Link Builder Isa Lavahun BTNSEO S...How to be the ultimate double agent- PR and Link Builder Isa Lavahun BTNSEO S...
How to be the ultimate double agent- PR and Link Builder Isa Lavahun BTNSEO S...
 
Probabilistic Thinking in SEO - BrightonSEO October 2022
Probabilistic Thinking in SEO - BrightonSEO October 2022Probabilistic Thinking in SEO - BrightonSEO October 2022
Probabilistic Thinking in SEO - BrightonSEO October 2022
 
BrightonSEO 2022.pdf
BrightonSEO 2022.pdfBrightonSEO 2022.pdf
BrightonSEO 2022.pdf
 
Data Driven Approach to Scale SEO at BrightonSEO 2023
Data Driven Approach to Scale SEO at BrightonSEO 2023Data Driven Approach to Scale SEO at BrightonSEO 2023
Data Driven Approach to Scale SEO at BrightonSEO 2023
 
Core Web Vitals Audit - Sophie Gibson - PDF - BrightonSEO.pdf
Core Web Vitals Audit - Sophie Gibson - PDF - BrightonSEO.pdfCore Web Vitals Audit - Sophie Gibson - PDF - BrightonSEO.pdf
Core Web Vitals Audit - Sophie Gibson - PDF - BrightonSEO.pdf
 
Content Design & its Role in SEO and Accessibility [BrightonSEO Spring 2023]
Content Design & its Role in SEO and Accessibility [BrightonSEO Spring 2023]Content Design & its Role in SEO and Accessibility [BrightonSEO Spring 2023]
Content Design & its Role in SEO and Accessibility [BrightonSEO Spring 2023]
 
Data Studio for SEOs: Reporting Automation Tips - Weekly SEO with Lazarina Stoy
Data Studio for SEOs: Reporting Automation Tips - Weekly SEO with Lazarina StoyData Studio for SEOs: Reporting Automation Tips - Weekly SEO with Lazarina Stoy
Data Studio for SEOs: Reporting Automation Tips - Weekly SEO with Lazarina Stoy
 
SEO at Scale - BrightonSEO April 2022
SEO at Scale - BrightonSEO April 2022SEO at Scale - BrightonSEO April 2022
SEO at Scale - BrightonSEO April 2022
 
SEO Automation Without Using Hard Code by Tevfik Mert Azizoglu - BrightonSEO ...
SEO Automation Without Using Hard Code by Tevfik Mert Azizoglu - BrightonSEO ...SEO Automation Without Using Hard Code by Tevfik Mert Azizoglu - BrightonSEO ...
SEO Automation Without Using Hard Code by Tevfik Mert Azizoglu - BrightonSEO ...
 
Brighton Y U No Reply_Bibi the Link Builder.pdf
Brighton Y U No Reply_Bibi the Link Builder.pdfBrighton Y U No Reply_Bibi the Link Builder.pdf
Brighton Y U No Reply_Bibi the Link Builder.pdf
 
10 most common mistakes when working from home
10 most common mistakes when working from home10 most common mistakes when working from home
10 most common mistakes when working from home
 
Giulia Panozzo | Neuroscience of Search | BrightonSEO April 2023
Giulia Panozzo | Neuroscience of Search | BrightonSEO April 2023Giulia Panozzo | Neuroscience of Search | BrightonSEO April 2023
Giulia Panozzo | Neuroscience of Search | BrightonSEO April 2023
 
[BrightonSEO 2022] Unlocking the Hidden Potential of Product Listing Pages
[BrightonSEO 2022] Unlocking the Hidden Potential of Product Listing Pages[BrightonSEO 2022] Unlocking the Hidden Potential of Product Listing Pages
[BrightonSEO 2022] Unlocking the Hidden Potential of Product Listing Pages
 

Semelhante a Developing Stronger Technical SEO Skills Through Learning Paths and Tools

Slow kinda sucks
Slow kinda sucksSlow kinda sucks
Slow kinda sucksTim Wright
 
Brighton SEO Sept 2019 PowerShell
Brighton SEO Sept 2019 PowerShellBrighton SEO Sept 2019 PowerShell
Brighton SEO Sept 2019 PowerShellMike Osolinski
 
Important factors to consider while designing your website !
Important factors to consider while designing your website !Important factors to consider while designing your website !
Important factors to consider while designing your website !Shubhankar Gautam
 
skillshare organic search strategy
skillshare organic search strategyskillshare organic search strategy
skillshare organic search strategyAlexis Sanders
 
Advanced Seo Web Development Tech Ed 2008
Advanced Seo Web Development Tech Ed 2008Advanced Seo Web Development Tech Ed 2008
Advanced Seo Web Development Tech Ed 2008Nathan Buggia
 
Tools of the Trade for Running SEO Audits - SMX East 2015: Essential Steps fo...
Tools of the Trade for Running SEO Audits - SMX East 2015: Essential Steps fo...Tools of the Trade for Running SEO Audits - SMX East 2015: Essential Steps fo...
Tools of the Trade for Running SEO Audits - SMX East 2015: Essential Steps fo...Benj Arriola
 
How to create seo report by seoruchi.com
How to create  seo report by seoruchi.comHow to create  seo report by seoruchi.com
How to create seo report by seoruchi.comphp2ranjan
 
White and black hat SEO
White  and  black hat SEOWhite  and  black hat SEO
White and black hat SEOGoogle Wizards
 
White Hat Seo And Black Hat SEO
White Hat Seo And Black Hat SEOWhite Hat Seo And Black Hat SEO
White Hat Seo And Black Hat SEOMahesh Gangurde
 
Technical SEO for Large eCommerce Websites 💻
Technical SEO for Large eCommerce Websites 💻Technical SEO for Large eCommerce Websites 💻
Technical SEO for Large eCommerce Websites 💻Kaizen
 
Technical SEO for large eCommerce websites
Technical SEO for large eCommerce websitesTechnical SEO for large eCommerce websites
Technical SEO for large eCommerce websitesSerenaPearson2
 
eGrove Systems Corporation - PrestaShop Development Services
eGrove Systems Corporation - PrestaShop Development ServiceseGrove Systems Corporation - PrestaShop Development Services
eGrove Systems Corporation - PrestaShop Development ServicesEgrove Systems Corporation
 
SEO Presentation
SEO PresentationSEO Presentation
SEO Presentationganeh17
 
www.sparkdigital.co.in_Complete - Search Engine Optimization Guide_2023.pptx
www.sparkdigital.co.in_Complete - Search Engine Optimization Guide_2023.pptxwww.sparkdigital.co.in_Complete - Search Engine Optimization Guide_2023.pptx
www.sparkdigital.co.in_Complete - Search Engine Optimization Guide_2023.pptxDineshSparkdigital
 

Semelhante a Developing Stronger Technical SEO Skills Through Learning Paths and Tools (20)

Slow kinda sucks
Slow kinda sucksSlow kinda sucks
Slow kinda sucks
 
SEO for large sites
SEO for large sitesSEO for large sites
SEO for large sites
 
Brighton SEO Sept 2019 PowerShell
Brighton SEO Sept 2019 PowerShellBrighton SEO Sept 2019 PowerShell
Brighton SEO Sept 2019 PowerShell
 
Important factors to consider while designing your website !
Important factors to consider while designing your website !Important factors to consider while designing your website !
Important factors to consider while designing your website !
 
skillshare organic search strategy
skillshare organic search strategyskillshare organic search strategy
skillshare organic search strategy
 
Advanced Seo Web Development Tech Ed 2008
Advanced Seo Web Development Tech Ed 2008Advanced Seo Web Development Tech Ed 2008
Advanced Seo Web Development Tech Ed 2008
 
Tools of the Trade for Running SEO Audits - SMX East 2015: Essential Steps fo...
Tools of the Trade for Running SEO Audits - SMX East 2015: Essential Steps fo...Tools of the Trade for Running SEO Audits - SMX East 2015: Essential Steps fo...
Tools of the Trade for Running SEO Audits - SMX East 2015: Essential Steps fo...
 
Building Web Hack Interfaces
Building Web Hack InterfacesBuilding Web Hack Interfaces
Building Web Hack Interfaces
 
Seo and analytics basics
Seo and analytics basicsSeo and analytics basics
Seo and analytics basics
 
Seo techniques
Seo techniquesSeo techniques
Seo techniques
 
How to create seo report by seoruchi.com
How to create  seo report by seoruchi.comHow to create  seo report by seoruchi.com
How to create seo report by seoruchi.com
 
Technial SEO
Technial SEOTechnial SEO
Technial SEO
 
White and black hat SEO
White  and  black hat SEOWhite  and  black hat SEO
White and black hat SEO
 
White Hat Seo And Black Hat SEO
White Hat Seo And Black Hat SEOWhite Hat Seo And Black Hat SEO
White Hat Seo And Black Hat SEO
 
White black hat seo
White   black hat seoWhite   black hat seo
White black hat seo
 
Technical SEO for Large eCommerce Websites 💻
Technical SEO for Large eCommerce Websites 💻Technical SEO for Large eCommerce Websites 💻
Technical SEO for Large eCommerce Websites 💻
 
Technical SEO for large eCommerce websites
Technical SEO for large eCommerce websitesTechnical SEO for large eCommerce websites
Technical SEO for large eCommerce websites
 
eGrove Systems Corporation - PrestaShop Development Services
eGrove Systems Corporation - PrestaShop Development ServiceseGrove Systems Corporation - PrestaShop Development Services
eGrove Systems Corporation - PrestaShop Development Services
 
SEO Presentation
SEO PresentationSEO Presentation
SEO Presentation
 
www.sparkdigital.co.in_Complete - Search Engine Optimization Guide_2023.pptx
www.sparkdigital.co.in_Complete - Search Engine Optimization Guide_2023.pptxwww.sparkdigital.co.in_Complete - Search Engine Optimization Guide_2023.pptx
www.sparkdigital.co.in_Complete - Search Engine Optimization Guide_2023.pptx
 

Último

Gen Z and Millennial Debit Card Use Survey.pdf
Gen Z and Millennial Debit Card Use Survey.pdfGen Z and Millennial Debit Card Use Survey.pdf
Gen Z and Millennial Debit Card Use Survey.pdfMedia Logic
 
Unlocking Passive Income: The Power of Affiliate Marketing
Unlocking Passive Income: The Power of Affiliate MarketingUnlocking Passive Income: The Power of Affiliate Marketing
Unlocking Passive Income: The Power of Affiliate MarketingDaniel
 
Bamboo Charcoal Toothpaste By Phyto Atomy For More Details Message On WhatsA...
Bamboo Charcoal Toothpaste By Phyto Atomy  For More Details Message On WhatsA...Bamboo Charcoal Toothpaste By Phyto Atomy  For More Details Message On WhatsA...
Bamboo Charcoal Toothpaste By Phyto Atomy For More Details Message On WhatsA...shrutimishraqt
 
Introduction to marketing Management Notes
Introduction to marketing Management NotesIntroduction to marketing Management Notes
Introduction to marketing Management NotesKiranTiwari42
 
5 Digital Marketing Tips | Devherds Software Solutions
5 Digital Marketing Tips | Devherds Software Solutions5 Digital Marketing Tips | Devherds Software Solutions
5 Digital Marketing Tips | Devherds Software SolutionsDevherds Software Solutions
 
Miss Immigrant USA Activity Pageant Program.pdf
Miss Immigrant USA Activity Pageant Program.pdfMiss Immigrant USA Activity Pageant Program.pdf
Miss Immigrant USA Activity Pageant Program.pdfMagdalena Kulisz
 
SEO Forecasting by Nitin Manchanda at Berlin SEO & Content Club
SEO Forecasting by Nitin Manchanda at Berlin SEO & Content ClubSEO Forecasting by Nitin Manchanda at Berlin SEO & Content Club
SEO Forecasting by Nitin Manchanda at Berlin SEO & Content ClubNitin Manchanda
 
Dave Cousin TW-BERT Good for Users, Good for SEOsBrighton SEO Deck
Dave Cousin TW-BERT Good for Users, Good for SEOsBrighton SEO DeckDave Cousin TW-BERT Good for Users, Good for SEOsBrighton SEO Deck
Dave Cousin TW-BERT Good for Users, Good for SEOsBrighton SEO DeckOban International
 
The Evolution of Internet : How consumers use technology and its impact on th...
The Evolution of Internet : How consumers use technology and its impact on th...The Evolution of Internet : How consumers use technology and its impact on th...
The Evolution of Internet : How consumers use technology and its impact on th...sowmyrao14
 
Digital Marketing Courses In Pune- school Of Internet Marketing
Digital Marketing Courses In Pune- school Of Internet MarketingDigital Marketing Courses In Pune- school Of Internet Marketing
Digital Marketing Courses In Pune- school Of Internet MarketingShauryaBadaya
 
Agencia Marketing Branding Measurement Certification Google Ads Abril 2024
Agencia Marketing Branding Measurement Certification Google Ads Abril 2024Agencia Marketing Branding Measurement Certification Google Ads Abril 2024
Agencia Marketing Branding Measurement Certification Google Ads Abril 2024Marketing BRANDING
 
Best digital marketing e-book form bignners
Best digital marketing e-book form bignnersBest digital marketing e-book form bignners
Best digital marketing e-book form bignnersmuntasibkhan58
 
15 Tactics to Scale Your Trade Show Marketing Strategy
15 Tactics to Scale Your Trade Show Marketing Strategy15 Tactics to Scale Your Trade Show Marketing Strategy
15 Tactics to Scale Your Trade Show Marketing StrategyBlue Atlas Marketing
 
Creating a Successful Digital Marketing Campaign.pdf
Creating a Successful Digital Marketing Campaign.pdfCreating a Successful Digital Marketing Campaign.pdf
Creating a Successful Digital Marketing Campaign.pdfgopzzzin
 
Navigating Global Markets and Strategies for Success
Navigating Global Markets and Strategies for SuccessNavigating Global Markets and Strategies for Success
Navigating Global Markets and Strategies for SuccessElizabeth Moore
 
Ryanair Marketing and business development Plan
Ryanair Marketing and business development  PlanRyanair Marketing and business development  Plan
Ryanair Marketing and business development Plandrkarimsaber
 
8 distribution in rural mkts.ppt Rural Marketing
8 distribution in rural mkts.ppt Rural Marketing8 distribution in rural mkts.ppt Rural Marketing
8 distribution in rural mkts.ppt Rural Marketingpshirsat
 
Exploring Web 3.0 Growth marketing: Navigating the Future of the Internet
Exploring Web 3.0 Growth marketing: Navigating the Future of the InternetExploring Web 3.0 Growth marketing: Navigating the Future of the Internet
Exploring Web 3.0 Growth marketing: Navigating the Future of the Internetnehapardhi711
 
A Comprehensive Guide to Technical SEO | Banyanbrain
A Comprehensive Guide to Technical SEO | BanyanbrainA Comprehensive Guide to Technical SEO | Banyanbrain
A Comprehensive Guide to Technical SEO | BanyanbrainBanyanbrain
 
Richard van der Velde, Technical Support Lead for Cookiebot @CMP – “Artificia...
Richard van der Velde, Technical Support Lead for Cookiebot @CMP – “Artificia...Richard van der Velde, Technical Support Lead for Cookiebot @CMP – “Artificia...
Richard van der Velde, Technical Support Lead for Cookiebot @CMP – “Artificia...Associazione Digital Days
 

Último (20)

Gen Z and Millennial Debit Card Use Survey.pdf
Gen Z and Millennial Debit Card Use Survey.pdfGen Z and Millennial Debit Card Use Survey.pdf
Gen Z and Millennial Debit Card Use Survey.pdf
 
Unlocking Passive Income: The Power of Affiliate Marketing
Unlocking Passive Income: The Power of Affiliate MarketingUnlocking Passive Income: The Power of Affiliate Marketing
Unlocking Passive Income: The Power of Affiliate Marketing
 
Bamboo Charcoal Toothpaste By Phyto Atomy For More Details Message On WhatsA...
Bamboo Charcoal Toothpaste By Phyto Atomy  For More Details Message On WhatsA...Bamboo Charcoal Toothpaste By Phyto Atomy  For More Details Message On WhatsA...
Bamboo Charcoal Toothpaste By Phyto Atomy For More Details Message On WhatsA...
 
Introduction to marketing Management Notes
Introduction to marketing Management NotesIntroduction to marketing Management Notes
Introduction to marketing Management Notes
 
5 Digital Marketing Tips | Devherds Software Solutions
5 Digital Marketing Tips | Devherds Software Solutions5 Digital Marketing Tips | Devherds Software Solutions
5 Digital Marketing Tips | Devherds Software Solutions
 
Miss Immigrant USA Activity Pageant Program.pdf
Miss Immigrant USA Activity Pageant Program.pdfMiss Immigrant USA Activity Pageant Program.pdf
Miss Immigrant USA Activity Pageant Program.pdf
 
SEO Forecasting by Nitin Manchanda at Berlin SEO & Content Club
SEO Forecasting by Nitin Manchanda at Berlin SEO & Content ClubSEO Forecasting by Nitin Manchanda at Berlin SEO & Content Club
SEO Forecasting by Nitin Manchanda at Berlin SEO & Content Club
 
Dave Cousin TW-BERT Good for Users, Good for SEOsBrighton SEO Deck
Dave Cousin TW-BERT Good for Users, Good for SEOsBrighton SEO DeckDave Cousin TW-BERT Good for Users, Good for SEOsBrighton SEO Deck
Dave Cousin TW-BERT Good for Users, Good for SEOsBrighton SEO Deck
 
The Evolution of Internet : How consumers use technology and its impact on th...
The Evolution of Internet : How consumers use technology and its impact on th...The Evolution of Internet : How consumers use technology and its impact on th...
The Evolution of Internet : How consumers use technology and its impact on th...
 
Digital Marketing Courses In Pune- school Of Internet Marketing
Digital Marketing Courses In Pune- school Of Internet MarketingDigital Marketing Courses In Pune- school Of Internet Marketing
Digital Marketing Courses In Pune- school Of Internet Marketing
 
Agencia Marketing Branding Measurement Certification Google Ads Abril 2024
Agencia Marketing Branding Measurement Certification Google Ads Abril 2024Agencia Marketing Branding Measurement Certification Google Ads Abril 2024
Agencia Marketing Branding Measurement Certification Google Ads Abril 2024
 
Best digital marketing e-book form bignners
Best digital marketing e-book form bignnersBest digital marketing e-book form bignners
Best digital marketing e-book form bignners
 
15 Tactics to Scale Your Trade Show Marketing Strategy
15 Tactics to Scale Your Trade Show Marketing Strategy15 Tactics to Scale Your Trade Show Marketing Strategy
15 Tactics to Scale Your Trade Show Marketing Strategy
 
Creating a Successful Digital Marketing Campaign.pdf
Creating a Successful Digital Marketing Campaign.pdfCreating a Successful Digital Marketing Campaign.pdf
Creating a Successful Digital Marketing Campaign.pdf
 
Navigating Global Markets and Strategies for Success
Navigating Global Markets and Strategies for SuccessNavigating Global Markets and Strategies for Success
Navigating Global Markets and Strategies for Success
 
Ryanair Marketing and business development Plan
Ryanair Marketing and business development  PlanRyanair Marketing and business development  Plan
Ryanair Marketing and business development Plan
 
8 distribution in rural mkts.ppt Rural Marketing
8 distribution in rural mkts.ppt Rural Marketing8 distribution in rural mkts.ppt Rural Marketing
8 distribution in rural mkts.ppt Rural Marketing
 
Exploring Web 3.0 Growth marketing: Navigating the Future of the Internet
Exploring Web 3.0 Growth marketing: Navigating the Future of the InternetExploring Web 3.0 Growth marketing: Navigating the Future of the Internet
Exploring Web 3.0 Growth marketing: Navigating the Future of the Internet
 
A Comprehensive Guide to Technical SEO | Banyanbrain
A Comprehensive Guide to Technical SEO | BanyanbrainA Comprehensive Guide to Technical SEO | Banyanbrain
A Comprehensive Guide to Technical SEO | Banyanbrain
 
Richard van der Velde, Technical Support Lead for Cookiebot @CMP – “Artificia...
Richard van der Velde, Technical Support Lead for Cookiebot @CMP – “Artificia...Richard van der Velde, Technical Support Lead for Cookiebot @CMP – “Artificia...
Richard van der Velde, Technical Support Lead for Cookiebot @CMP – “Artificia...
 

Developing Stronger Technical SEO Skills Through Learning Paths and Tools