SlideShare a Scribd company logo
1 of 3
Download to read offline
SEO Cheat Sheet v.0.4
          Element        Example                                                                   Note
          Hyperlink      <a href="http://www.example.com/keyword.in.url.html" title="Keyword in    < 10 words
LINKS

                         Title">Keyword in text</a>
          Image          <img src="http://www.example.com/keyword.jpg" alt="Keyword in Alt" />     < 10 words

          URL            http://www.example.com/keywords.in.url.html                               < 96 characters
HTML




                         http://keyword.example.com/index.html                                     < 4 depth
                         http://www.example.com/category/keyword.in.url.html                       < 4 domain levels
                         http://www.example.com/category/sub/sub/keyword.in.url.html               End your URLs in a .html
                         http://www.example.com/index.html?article=keyword
                         http://www.example.com/index.html?cat=category&article=keyword
                         http://www.example.com/index.html?cat=43&sub=2&article=12&lang=en
          Title          <title>Keyword in Title</title>                                           < 70 characters - including
                         <title>Keyword in Title > Category</title>                                spaces
                         <title>Keyword in Title > Category | Site Title</title>                   < 10 words
                         <title>Site Title > Category > Keyword in Title</title>
                         <title>Site Title</title>
          Meta           <meta name="keywords" content="keyword1, keyword2, keyword3" />           < 255 characters
                                                                                                   < 20 words
                         <meta name="description" content="All text about keywords, red            < 160 characters
                         keywords, green keywords, blue keywords" />
                         Use different keywords and description on each page
          HTML           Content should be placed above menu and other stuff                       < 160 kilobytes
                         Write page w/out JavaScript and CSS in HTML source – use external files   < 100 unique links per page
                         XHTML or HTML should be valid
          Source         http://validator.w3.org/                                                  HTML Validator
          Heading        <h1>Most Important Keyword</h1>                                           <h1> can equal to page title
CONTENT




                         <h2>Second Most Important Keyword</h2>                                    < 96 characters
                         <h3>Third Most Important Keyword </h3>
                         <h4>…<h6> - for minor keywords
          Extract text   <b>Keyword</b>                                                            Use native HTML, not CSS
                         <strong>Keyword</strong>
                         <i>Keyword</i>
                         <em>Keyword</em>
                         <font size="3">Keyword</font>
                         <span class="bold">Keyword</span>
          Syndication    Generate RSS for your dynamic content like "News", "Announce", etc.
          Attention      Don’t generate content with the help Flash*, AJAX or JavaScript
                         Don’t show the same content with different URLs and titles

          File Syntax    <?xml version="1.0" encoding="UTF-8"?>                                    < 50000 URL
SITEMAP




                         <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">              < 10 Mb
                          <url>
                           <loc>http://www.example.com/</loc>                                      XML must be valid
                           <lastmod>2008-06-18T06:04:00+00:00</lastmod>
                           <changefreq>daily</changefreq>                                          Sitemap for example.com
                           <priority>1.0</priority>                                                can’t contain links to sub
                          </url>                                                                   domain (host.example.com)
                         </urlset>
          Index File     <?xml version="1.0" encoding="UTF-8"?>                                    < 1000 files
                           <sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">      For two and more sitemap
                           <sitemap>                                                               files
                             <loc>http://www.example.com/sitemap1.xml.gz</loc>
                             <lastmod>2008-06-18T06:04:00+00:00</lastmod>
                           </sitemap>
                           <sitemap>
                             <loc>http://www.example.com/sitemap2.xml.gz</loc>
                             <lastmod>2008-06-20T06:04:00+00:00</lastmod>
                           </sitemap>
                           </sitemapindex>
Copyright © 2008, Anton Shevchuk, http://anton.shevchuk.name
SEO Cheat Sheet v.0.4
            Location        http://www. example.com/sitemap.xml                                  Default Location
                            http://www. example.com/sitemap.xml.gz
                            http://www. example.com/sitemap.gz
            Source          http://www.xml-sitemaps.com/                                         Generator
                            http://www.sitemaps.org/protocol.php                                 Specification
            Meta tag        <meta name="Robot Name" content="Arguments" />                       Use "robots" for all robots
ROBOTS




                                                             Arguments
                            noindex       Google, Yahoo, Live, Ask, Yandex Page Not Indexed
                            nofollow      Google, Yahoo, Live, Ask         All Links on Page
                                                                           Become No Followed
                            noarchive Google, Yahoo, Live, Ask             Page Not Cached
            Robots.txt      User-agent: *
                            Disallow: /private/
                            Disallow: /private.html

                            User-agent: Googlebot/2.1
                            Sitemap: http://www.example.com/sitemap.xml
            Source          http://www.robotstxt.org/robotstxt.html                              Specification for robots.txt
                            http://www.robotstxt.org/meta.html                                   Specification for meta
                            http://www.user-agents.org/                                          List of User-Agents

            Apache          Write to a file called".htaccess"
REDIRECT




                            Hidden files must be viewable in operating system or FTP
                            Redirect 301 / http://www.example.com/                               Redirect to a new domain
                            RewriteEngine on                                                     Redirect from
                            RewriteCond %{HTTP_HOST} ^example.com [NC]                           http://example.com to
                            RewriteRule ^/(.*)$ http://www.example.com/$1 [L,R=301]              http://www. example.com
                                                                                                 Required mod_rewrite
            PHP             <?php                                                                Permanent redirect
                              header("HTTP/1.1 301 Moved Permanently");
                              header("Location: http://www.example.com/");
                              exit();
                            ?>
            Perl            #!/usr/bin/perl -w
                            use strict;
                            print "Status: 301 Moved Permanantlyn";
                            print "Location: http://www.example.com/page.htmnn";
                            exit;
            Ruby on Rails   headers["Status"] = "301 Moved Permanently"
                            redirect_to "http://www. example.com/"
            Source          http://httpd.apache.org/docs/2.2/mod/mod_rewrite.html                mod_rewrite manual

            Source          http://www.dmoz.org/add.html                                         DMOZ
CATALOGS




                            http://www.google.com/addurl/?continue=/addurl                       Google
                            http://submit.search.yahoo.com/free/request                          Yahoo
                            http://search.msn.com/docs/submit.aspx                               Live
                            http://webmaster.yandex.ru/                                          Yandex (russian)

            Source          http://www.google.com/webmasters/                                    Google Webmaster Tools
BOOKMARKS




                            http://webmaster.yandex.ru/                                          Yandex Webmaster Tools
                            http://analyser.hohli.com/url                                        SEO URL Analyser
                            http://www.livepr.info/                                              Check Google PageRank
                            http://www.sape.ru/                                                  Link Exchange (russian)

            Thanks          http://mihaigheza.files.wordpress.com/2007/08/seo_cheat_sheet.pdf    Primary source
©




                            http://www.seomoz.org/user_files/SEO_Web_Developer_Cheat_Sheet.pdf



Copyright © 2008, Anton Shevchuk, http://anton.shevchuk.name
SEO Cheat Sheet v.0.4
         Links

      •<a href="http://www.domain.com/buy-elephant.html" title="Buy Elephant">Buy Elephant</a>
      •<a href="http://www.domain.com/buy-elephant.html" title="Buy Best Elephant">Buy Best Elephant</a>
      •<a href="http://www.domain.com/buy-elephant.html" title="Buy Red Elephant">Buy Red Elephant</a>
      •<a href="http://www.domain.com/buy-elephant.html" title="Buy Green Elephant">Buy Green Elephant</a>
      •<a href="http://www.domain.com/buy-elephant.html" title="Buy Blue Elephant">Buy Blue Elephant</a>

         HTML

      •URL : http://www.domain.com/buy-elephant.html
      •TITLE : Buy Elephant
      •KEYWORDS: Elephant, Elephant Price, Elephant Review, Red Elephant, Green Elephant, Blue Elephant
      •DESCRIPTION: Buy Elephant in The Elephant Shop, big choice of elephants, Category: Shop, Price: $100

         Content

      •<h1>Buy Elephant</h1>
      •Buy our elephants in our shop.
      •<h2>Elephant shop</h2>
      •Elephant price: $100
      •<h3>Elephant review</h3>
      •Is The Best Of The West.

      •Red Elephant - is red - like sunset
      •Green Elephant - is nice green, green like grass
      •BlueElephant - is blue, blue like sky




Copyright © 2008, Anton Shevchuk, http://anton.shevchuk.name

More Related Content

What's hot

E2 appspresso hands on lab
E2 appspresso hands on labE2 appspresso hands on lab
E2 appspresso hands on labNAVER D2
 
Reading listの検索結果
Reading listの検索結果Reading listの検索結果
Reading listの検索結果Yohei Munesada
 
PHP language presentation
PHP language presentationPHP language presentation
PHP language presentationAnnujj Agrawaal
 
Doing Things the WordPress Way
Doing Things the WordPress WayDoing Things the WordPress Way
Doing Things the WordPress WayMatt Wiebe
 
Zen codingcheatsheet
Zen codingcheatsheetZen codingcheatsheet
Zen codingcheatsheetgoldenveizer
 
Grok Drupal (7) Theming
Grok Drupal (7) ThemingGrok Drupal (7) Theming
Grok Drupal (7) ThemingPINGV
 
HTML5, The Open Web, and what it means for you - Altran
HTML5, The Open Web, and what it means for you - AltranHTML5, The Open Web, and what it means for you - Altran
HTML5, The Open Web, and what it means for you - AltranRobert Nyman
 
Intro to Theming Drupal, FOSSLC Summer Camp 2010
Intro to Theming Drupal, FOSSLC Summer Camp 2010Intro to Theming Drupal, FOSSLC Summer Camp 2010
Intro to Theming Drupal, FOSSLC Summer Camp 2010Emma Jane Hogbin Westby
 
NewBCamp09: Turning your design into a WordPress Theme
NewBCamp09: Turning your design into a WordPress ThemeNewBCamp09: Turning your design into a WordPress Theme
NewBCamp09: Turning your design into a WordPress ThemeAdam Darowski
 
Theme Kickstart
Theme KickstartTheme Kickstart
Theme KickstartPeter
 
ePUB 3 and Publishing e-books
ePUB 3 and Publishing e-booksePUB 3 and Publishing e-books
ePUB 3 and Publishing e-booksKerem Karatal
 
Grok Drupal (7) Theming (presented at DrupalCon San Francisco)
Grok Drupal (7) Theming (presented at DrupalCon San Francisco)Grok Drupal (7) Theming (presented at DrupalCon San Francisco)
Grok Drupal (7) Theming (presented at DrupalCon San Francisco)Laura Scott
 

What's hot (17)

Frfrfrf
FrfrfrfFrfrfrf
Frfrfrf
 
E2 appspresso hands on lab
E2 appspresso hands on labE2 appspresso hands on lab
E2 appspresso hands on lab
 
Apache
ApacheApache
Apache
 
Reading listの検索結果
Reading listの検索結果Reading listの検索結果
Reading listの検索結果
 
PHP language presentation
PHP language presentationPHP language presentation
PHP language presentation
 
Ajax
AjaxAjax
Ajax
 
Doing Things the WordPress Way
Doing Things the WordPress WayDoing Things the WordPress Way
Doing Things the WordPress Way
 
Zen codingcheatsheet
Zen codingcheatsheetZen codingcheatsheet
Zen codingcheatsheet
 
Grok Drupal (7) Theming
Grok Drupal (7) ThemingGrok Drupal (7) Theming
Grok Drupal (7) Theming
 
HTML5, The Open Web, and what it means for you - Altran
HTML5, The Open Web, and what it means for you - AltranHTML5, The Open Web, and what it means for you - Altran
HTML5, The Open Web, and what it means for you - Altran
 
Design to Theme @ CMSExpo
Design to Theme @ CMSExpoDesign to Theme @ CMSExpo
Design to Theme @ CMSExpo
 
Intro to Theming Drupal, FOSSLC Summer Camp 2010
Intro to Theming Drupal, FOSSLC Summer Camp 2010Intro to Theming Drupal, FOSSLC Summer Camp 2010
Intro to Theming Drupal, FOSSLC Summer Camp 2010
 
Wordpress(css,php,js,ajax)
Wordpress(css,php,js,ajax)Wordpress(css,php,js,ajax)
Wordpress(css,php,js,ajax)
 
NewBCamp09: Turning your design into a WordPress Theme
NewBCamp09: Turning your design into a WordPress ThemeNewBCamp09: Turning your design into a WordPress Theme
NewBCamp09: Turning your design into a WordPress Theme
 
Theme Kickstart
Theme KickstartTheme Kickstart
Theme Kickstart
 
ePUB 3 and Publishing e-books
ePUB 3 and Publishing e-booksePUB 3 and Publishing e-books
ePUB 3 and Publishing e-books
 
Grok Drupal (7) Theming (presented at DrupalCon San Francisco)
Grok Drupal (7) Theming (presented at DrupalCon San Francisco)Grok Drupal (7) Theming (presented at DrupalCon San Francisco)
Grok Drupal (7) Theming (presented at DrupalCon San Francisco)
 

Similar to Great+Seo+Cheatsheet

Seo cheat sheet_2-2013
Seo cheat sheet_2-2013Seo cheat sheet_2-2013
Seo cheat sheet_2-2013vijay patil
 
Seo cheat sheet_2-2013
Seo cheat sheet_2-2013Seo cheat sheet_2-2013
Seo cheat sheet_2-2013ekkarthik
 
SEO cheat 2013 by Moz
SEO cheat 2013 by MozSEO cheat 2013 by Moz
SEO cheat 2013 by MozThái Mèo
 
Seo cheat sheet 2 [2013] For General Information
Seo cheat sheet 2 [2013] For General InformationSeo cheat sheet 2 [2013] For General Information
Seo cheat sheet 2 [2013] For General InformationNirav Patel
 
Seo cheat sheet_2-2013
Seo cheat sheet_2-2013Seo cheat sheet_2-2013
Seo cheat sheet_2-2013E-event
 
Moz SEO Web cheat sheet 2016
Moz SEO Web cheat sheet 2016Moz SEO Web cheat sheet 2016
Moz SEO Web cheat sheet 2016Nirav Patel
 
The Web Developer's SEO Cheat Sheet
The Web Developer's SEO Cheat Sheet The Web Developer's SEO Cheat Sheet
The Web Developer's SEO Cheat Sheet Shubham Kumar Singh
 
Seo cheat sheet
Seo cheat sheetSeo cheat sheet
Seo cheat sheetRohan Jha
 
Seo cheat sheet_2-2013
Seo cheat sheet_2-2013Seo cheat sheet_2-2013
Seo cheat sheet_2-2013SEOBANK
 
Moz SEO Cheat Sheet
Moz SEO Cheat SheetMoz SEO Cheat Sheet
Moz SEO Cheat Sheetjnnydeep
 
The Web Developer's SEO Cheat Sheet 2.0 from the Moz Blog
The Web Developer's SEO Cheat Sheet 2.0 from the Moz BlogThe Web Developer's SEO Cheat Sheet 2.0 from the Moz Blog
The Web Developer's SEO Cheat Sheet 2.0 from the Moz BlogFoteini Vavitsa
 
Seo Cheat Sheet 2 [2013]
Seo Cheat Sheet 2 [2013]Seo Cheat Sheet 2 [2013]
Seo Cheat Sheet 2 [2013]Burt and Co LLC
 
Seo cheat sheet 2013
Seo cheat sheet 2013Seo cheat sheet 2013
Seo cheat sheet 2013SEOM
 
Seo cheat sheet 2013
Seo cheat sheet 2013Seo cheat sheet 2013
Seo cheat sheet 2013GroupM Spain
 

Similar to Great+Seo+Cheatsheet (20)

Seo cheat-sheet
Seo cheat-sheetSeo cheat-sheet
Seo cheat-sheet
 
Seo cheat sheet_2-2013
Seo cheat sheet_2-2013Seo cheat sheet_2-2013
Seo cheat sheet_2-2013
 
Seo cheat sheet_2-2013
Seo cheat sheet_2-2013Seo cheat sheet_2-2013
Seo cheat sheet_2-2013
 
SEO cheat 2013 by Moz
SEO cheat 2013 by MozSEO cheat 2013 by Moz
SEO cheat 2013 by Moz
 
Seo cheat sheet 2 [2013] For General Information
Seo cheat sheet 2 [2013] For General InformationSeo cheat sheet 2 [2013] For General Information
Seo cheat sheet 2 [2013] For General Information
 
Seo cheat sheet_2-2013
Seo cheat sheet_2-2013Seo cheat sheet_2-2013
Seo cheat sheet_2-2013
 
Moz SEO Web cheat sheet 2016
Moz SEO Web cheat sheet 2016Moz SEO Web cheat sheet 2016
Moz SEO Web cheat sheet 2016
 
Seo cheat-sheet
Seo cheat-sheetSeo cheat-sheet
Seo cheat-sheet
 
The Web Developer's SEO Cheat Sheet
The Web Developer's SEO Cheat Sheet The Web Developer's SEO Cheat Sheet
The Web Developer's SEO Cheat Sheet
 
Seo cheat sheet
Seo cheat sheetSeo cheat sheet
Seo cheat sheet
 
Seo cheat sheet
Seo cheat sheetSeo cheat sheet
Seo cheat sheet
 
Seo cheat-sheet
Seo cheat-sheetSeo cheat-sheet
Seo cheat-sheet
 
Seo onpage for Developer
Seo onpage for DeveloperSeo onpage for Developer
Seo onpage for Developer
 
Seo cheat sheet_2-2013
Seo cheat sheet_2-2013Seo cheat sheet_2-2013
Seo cheat sheet_2-2013
 
Moz SEO Cheat Sheet
Moz SEO Cheat SheetMoz SEO Cheat Sheet
Moz SEO Cheat Sheet
 
The Web Developer's SEO Cheat Sheet 2.0 from the Moz Blog
The Web Developer's SEO Cheat Sheet 2.0 from the Moz BlogThe Web Developer's SEO Cheat Sheet 2.0 from the Moz Blog
The Web Developer's SEO Cheat Sheet 2.0 from the Moz Blog
 
Seo Cheat Sheet 2 [2013]
Seo Cheat Sheet 2 [2013]Seo Cheat Sheet 2 [2013]
Seo Cheat Sheet 2 [2013]
 
Seo cheat sheet 2013
Seo cheat sheet 2013Seo cheat sheet 2013
Seo cheat sheet 2013
 
Seo cheat sheet 2013
Seo cheat sheet 2013Seo cheat sheet 2013
Seo cheat sheet 2013
 
HTML Fundamentals
HTML FundamentalsHTML Fundamentals
HTML Fundamentals
 

Recently uploaded

Merck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptxMerck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptxLoriGlavin3
 
The Future Roadmap for the Composable Data Stack - Wes McKinney - Data Counci...
The Future Roadmap for the Composable Data Stack - Wes McKinney - Data Counci...The Future Roadmap for the Composable Data Stack - Wes McKinney - Data Counci...
The Future Roadmap for the Composable Data Stack - Wes McKinney - Data Counci...Wes McKinney
 
Emixa Mendix Meetup 11 April 2024 about Mendix Native development
Emixa Mendix Meetup 11 April 2024 about Mendix Native developmentEmixa Mendix Meetup 11 April 2024 about Mendix Native development
Emixa Mendix Meetup 11 April 2024 about Mendix Native developmentPim van der Noll
 
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptx
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptxPasskey Providers and Enabling Portability: FIDO Paris Seminar.pptx
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptxLoriGlavin3
 
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptxThe Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptxLoriGlavin3
 
2024 April Patch Tuesday
2024 April Patch Tuesday2024 April Patch Tuesday
2024 April Patch TuesdayIvanti
 
The State of Passkeys with FIDO Alliance.pptx
The State of Passkeys with FIDO Alliance.pptxThe State of Passkeys with FIDO Alliance.pptx
The State of Passkeys with FIDO Alliance.pptxLoriGlavin3
 
Modern Roaming for Notes and Nomad – Cheaper Faster Better Stronger
Modern Roaming for Notes and Nomad – Cheaper Faster Better StrongerModern Roaming for Notes and Nomad – Cheaper Faster Better Stronger
Modern Roaming for Notes and Nomad – Cheaper Faster Better Strongerpanagenda
 
Generative AI - Gitex v1Generative AI - Gitex v1.pptx
Generative AI - Gitex v1Generative AI - Gitex v1.pptxGenerative AI - Gitex v1Generative AI - Gitex v1.pptx
Generative AI - Gitex v1Generative AI - Gitex v1.pptxfnnc6jmgwh
 
TrustArc Webinar - How to Build Consumer Trust Through Data Privacy
TrustArc Webinar - How to Build Consumer Trust Through Data PrivacyTrustArc Webinar - How to Build Consumer Trust Through Data Privacy
TrustArc Webinar - How to Build Consumer Trust Through Data PrivacyTrustArc
 
The Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsThe Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsPixlogix Infotech
 
Genislab builds better products and faster go-to-market with Lean project man...
Genislab builds better products and faster go-to-market with Lean project man...Genislab builds better products and faster go-to-market with Lean project man...
Genislab builds better products and faster go-to-market with Lean project man...Farhan Tariq
 
Potential of AI (Generative AI) in Business: Learnings and Insights
Potential of AI (Generative AI) in Business: Learnings and InsightsPotential of AI (Generative AI) in Business: Learnings and Insights
Potential of AI (Generative AI) in Business: Learnings and InsightsRavi Sanghani
 
So einfach geht modernes Roaming fuer Notes und Nomad.pdf
So einfach geht modernes Roaming fuer Notes und Nomad.pdfSo einfach geht modernes Roaming fuer Notes und Nomad.pdf
So einfach geht modernes Roaming fuer Notes und Nomad.pdfpanagenda
 
Bridging Between CAD & GIS: 6 Ways to Automate Your Data Integration
Bridging Between CAD & GIS:  6 Ways to Automate Your Data IntegrationBridging Between CAD & GIS:  6 Ways to Automate Your Data Integration
Bridging Between CAD & GIS: 6 Ways to Automate Your Data Integrationmarketing932765
 
Decarbonising Buildings: Making a net-zero built environment a reality
Decarbonising Buildings: Making a net-zero built environment a realityDecarbonising Buildings: Making a net-zero built environment a reality
Decarbonising Buildings: Making a net-zero built environment a realityIES VE
 
Varsha Sewlal- Cyber Attacks on Critical Critical Infrastructure
Varsha Sewlal- Cyber Attacks on Critical Critical InfrastructureVarsha Sewlal- Cyber Attacks on Critical Critical Infrastructure
Varsha Sewlal- Cyber Attacks on Critical Critical Infrastructureitnewsafrica
 
Scale your database traffic with Read & Write split using MySQL Router
Scale your database traffic with Read & Write split using MySQL RouterScale your database traffic with Read & Write split using MySQL Router
Scale your database traffic with Read & Write split using MySQL RouterMydbops
 
A Deep Dive on Passkeys: FIDO Paris Seminar.pptx
A Deep Dive on Passkeys: FIDO Paris Seminar.pptxA Deep Dive on Passkeys: FIDO Paris Seminar.pptx
A Deep Dive on Passkeys: FIDO Paris Seminar.pptxLoriGlavin3
 
Connecting the Dots for Information Discovery.pdf
Connecting the Dots for Information Discovery.pdfConnecting the Dots for Information Discovery.pdf
Connecting the Dots for Information Discovery.pdfNeo4j
 

Recently uploaded (20)

Merck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptxMerck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptx
 
The Future Roadmap for the Composable Data Stack - Wes McKinney - Data Counci...
The Future Roadmap for the Composable Data Stack - Wes McKinney - Data Counci...The Future Roadmap for the Composable Data Stack - Wes McKinney - Data Counci...
The Future Roadmap for the Composable Data Stack - Wes McKinney - Data Counci...
 
Emixa Mendix Meetup 11 April 2024 about Mendix Native development
Emixa Mendix Meetup 11 April 2024 about Mendix Native developmentEmixa Mendix Meetup 11 April 2024 about Mendix Native development
Emixa Mendix Meetup 11 April 2024 about Mendix Native development
 
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptx
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptxPasskey Providers and Enabling Portability: FIDO Paris Seminar.pptx
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptx
 
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptxThe Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
 
2024 April Patch Tuesday
2024 April Patch Tuesday2024 April Patch Tuesday
2024 April Patch Tuesday
 
The State of Passkeys with FIDO Alliance.pptx
The State of Passkeys with FIDO Alliance.pptxThe State of Passkeys with FIDO Alliance.pptx
The State of Passkeys with FIDO Alliance.pptx
 
Modern Roaming for Notes and Nomad – Cheaper Faster Better Stronger
Modern Roaming for Notes and Nomad – Cheaper Faster Better StrongerModern Roaming for Notes and Nomad – Cheaper Faster Better Stronger
Modern Roaming for Notes and Nomad – Cheaper Faster Better Stronger
 
Generative AI - Gitex v1Generative AI - Gitex v1.pptx
Generative AI - Gitex v1Generative AI - Gitex v1.pptxGenerative AI - Gitex v1Generative AI - Gitex v1.pptx
Generative AI - Gitex v1Generative AI - Gitex v1.pptx
 
TrustArc Webinar - How to Build Consumer Trust Through Data Privacy
TrustArc Webinar - How to Build Consumer Trust Through Data PrivacyTrustArc Webinar - How to Build Consumer Trust Through Data Privacy
TrustArc Webinar - How to Build Consumer Trust Through Data Privacy
 
The Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsThe Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and Cons
 
Genislab builds better products and faster go-to-market with Lean project man...
Genislab builds better products and faster go-to-market with Lean project man...Genislab builds better products and faster go-to-market with Lean project man...
Genislab builds better products and faster go-to-market with Lean project man...
 
Potential of AI (Generative AI) in Business: Learnings and Insights
Potential of AI (Generative AI) in Business: Learnings and InsightsPotential of AI (Generative AI) in Business: Learnings and Insights
Potential of AI (Generative AI) in Business: Learnings and Insights
 
So einfach geht modernes Roaming fuer Notes und Nomad.pdf
So einfach geht modernes Roaming fuer Notes und Nomad.pdfSo einfach geht modernes Roaming fuer Notes und Nomad.pdf
So einfach geht modernes Roaming fuer Notes und Nomad.pdf
 
Bridging Between CAD & GIS: 6 Ways to Automate Your Data Integration
Bridging Between CAD & GIS:  6 Ways to Automate Your Data IntegrationBridging Between CAD & GIS:  6 Ways to Automate Your Data Integration
Bridging Between CAD & GIS: 6 Ways to Automate Your Data Integration
 
Decarbonising Buildings: Making a net-zero built environment a reality
Decarbonising Buildings: Making a net-zero built environment a realityDecarbonising Buildings: Making a net-zero built environment a reality
Decarbonising Buildings: Making a net-zero built environment a reality
 
Varsha Sewlal- Cyber Attacks on Critical Critical Infrastructure
Varsha Sewlal- Cyber Attacks on Critical Critical InfrastructureVarsha Sewlal- Cyber Attacks on Critical Critical Infrastructure
Varsha Sewlal- Cyber Attacks on Critical Critical Infrastructure
 
Scale your database traffic with Read & Write split using MySQL Router
Scale your database traffic with Read & Write split using MySQL RouterScale your database traffic with Read & Write split using MySQL Router
Scale your database traffic with Read & Write split using MySQL Router
 
A Deep Dive on Passkeys: FIDO Paris Seminar.pptx
A Deep Dive on Passkeys: FIDO Paris Seminar.pptxA Deep Dive on Passkeys: FIDO Paris Seminar.pptx
A Deep Dive on Passkeys: FIDO Paris Seminar.pptx
 
Connecting the Dots for Information Discovery.pdf
Connecting the Dots for Information Discovery.pdfConnecting the Dots for Information Discovery.pdf
Connecting the Dots for Information Discovery.pdf
 

Great+Seo+Cheatsheet

  • 1. SEO Cheat Sheet v.0.4 Element Example Note Hyperlink <a href="http://www.example.com/keyword.in.url.html" title="Keyword in < 10 words LINKS Title">Keyword in text</a> Image <img src="http://www.example.com/keyword.jpg" alt="Keyword in Alt" /> < 10 words URL http://www.example.com/keywords.in.url.html < 96 characters HTML http://keyword.example.com/index.html < 4 depth http://www.example.com/category/keyword.in.url.html < 4 domain levels http://www.example.com/category/sub/sub/keyword.in.url.html End your URLs in a .html http://www.example.com/index.html?article=keyword http://www.example.com/index.html?cat=category&article=keyword http://www.example.com/index.html?cat=43&sub=2&article=12&lang=en Title <title>Keyword in Title</title> < 70 characters - including <title>Keyword in Title > Category</title> spaces <title>Keyword in Title > Category | Site Title</title> < 10 words <title>Site Title > Category > Keyword in Title</title> <title>Site Title</title> Meta <meta name="keywords" content="keyword1, keyword2, keyword3" /> < 255 characters < 20 words <meta name="description" content="All text about keywords, red < 160 characters keywords, green keywords, blue keywords" /> Use different keywords and description on each page HTML Content should be placed above menu and other stuff < 160 kilobytes Write page w/out JavaScript and CSS in HTML source – use external files < 100 unique links per page XHTML or HTML should be valid Source http://validator.w3.org/ HTML Validator Heading <h1>Most Important Keyword</h1> <h1> can equal to page title CONTENT <h2>Second Most Important Keyword</h2> < 96 characters <h3>Third Most Important Keyword </h3> <h4>…<h6> - for minor keywords Extract text <b>Keyword</b> Use native HTML, not CSS <strong>Keyword</strong> <i>Keyword</i> <em>Keyword</em> <font size="3">Keyword</font> <span class="bold">Keyword</span> Syndication Generate RSS for your dynamic content like "News", "Announce", etc. Attention Don’t generate content with the help Flash*, AJAX or JavaScript Don’t show the same content with different URLs and titles File Syntax <?xml version="1.0" encoding="UTF-8"?> < 50000 URL SITEMAP <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> < 10 Mb <url> <loc>http://www.example.com/</loc> XML must be valid <lastmod>2008-06-18T06:04:00+00:00</lastmod> <changefreq>daily</changefreq> Sitemap for example.com <priority>1.0</priority> can’t contain links to sub </url> domain (host.example.com) </urlset> Index File <?xml version="1.0" encoding="UTF-8"?> < 1000 files <sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> For two and more sitemap <sitemap> files <loc>http://www.example.com/sitemap1.xml.gz</loc> <lastmod>2008-06-18T06:04:00+00:00</lastmod> </sitemap> <sitemap> <loc>http://www.example.com/sitemap2.xml.gz</loc> <lastmod>2008-06-20T06:04:00+00:00</lastmod> </sitemap> </sitemapindex> Copyright © 2008, Anton Shevchuk, http://anton.shevchuk.name
  • 2. SEO Cheat Sheet v.0.4 Location http://www. example.com/sitemap.xml Default Location http://www. example.com/sitemap.xml.gz http://www. example.com/sitemap.gz Source http://www.xml-sitemaps.com/ Generator http://www.sitemaps.org/protocol.php Specification Meta tag <meta name="Robot Name" content="Arguments" /> Use "robots" for all robots ROBOTS Arguments noindex Google, Yahoo, Live, Ask, Yandex Page Not Indexed nofollow Google, Yahoo, Live, Ask All Links on Page Become No Followed noarchive Google, Yahoo, Live, Ask Page Not Cached Robots.txt User-agent: * Disallow: /private/ Disallow: /private.html User-agent: Googlebot/2.1 Sitemap: http://www.example.com/sitemap.xml Source http://www.robotstxt.org/robotstxt.html Specification for robots.txt http://www.robotstxt.org/meta.html Specification for meta http://www.user-agents.org/ List of User-Agents Apache Write to a file called".htaccess" REDIRECT Hidden files must be viewable in operating system or FTP Redirect 301 / http://www.example.com/ Redirect to a new domain RewriteEngine on Redirect from RewriteCond %{HTTP_HOST} ^example.com [NC] http://example.com to RewriteRule ^/(.*)$ http://www.example.com/$1 [L,R=301] http://www. example.com Required mod_rewrite PHP <?php Permanent redirect header("HTTP/1.1 301 Moved Permanently"); header("Location: http://www.example.com/"); exit(); ?> Perl #!/usr/bin/perl -w use strict; print "Status: 301 Moved Permanantlyn"; print "Location: http://www.example.com/page.htmnn"; exit; Ruby on Rails headers["Status"] = "301 Moved Permanently" redirect_to "http://www. example.com/" Source http://httpd.apache.org/docs/2.2/mod/mod_rewrite.html mod_rewrite manual Source http://www.dmoz.org/add.html DMOZ CATALOGS http://www.google.com/addurl/?continue=/addurl Google http://submit.search.yahoo.com/free/request Yahoo http://search.msn.com/docs/submit.aspx Live http://webmaster.yandex.ru/ Yandex (russian) Source http://www.google.com/webmasters/ Google Webmaster Tools BOOKMARKS http://webmaster.yandex.ru/ Yandex Webmaster Tools http://analyser.hohli.com/url SEO URL Analyser http://www.livepr.info/ Check Google PageRank http://www.sape.ru/ Link Exchange (russian) Thanks http://mihaigheza.files.wordpress.com/2007/08/seo_cheat_sheet.pdf Primary source © http://www.seomoz.org/user_files/SEO_Web_Developer_Cheat_Sheet.pdf Copyright © 2008, Anton Shevchuk, http://anton.shevchuk.name
  • 3. SEO Cheat Sheet v.0.4 Links •<a href="http://www.domain.com/buy-elephant.html" title="Buy Elephant">Buy Elephant</a> •<a href="http://www.domain.com/buy-elephant.html" title="Buy Best Elephant">Buy Best Elephant</a> •<a href="http://www.domain.com/buy-elephant.html" title="Buy Red Elephant">Buy Red Elephant</a> •<a href="http://www.domain.com/buy-elephant.html" title="Buy Green Elephant">Buy Green Elephant</a> •<a href="http://www.domain.com/buy-elephant.html" title="Buy Blue Elephant">Buy Blue Elephant</a> HTML •URL : http://www.domain.com/buy-elephant.html •TITLE : Buy Elephant •KEYWORDS: Elephant, Elephant Price, Elephant Review, Red Elephant, Green Elephant, Blue Elephant •DESCRIPTION: Buy Elephant in The Elephant Shop, big choice of elephants, Category: Shop, Price: $100 Content •<h1>Buy Elephant</h1> •Buy our elephants in our shop. •<h2>Elephant shop</h2> •Elephant price: $100 •<h3>Elephant review</h3> •Is The Best Of The West. •Red Elephant - is red - like sunset •Green Elephant - is nice green, green like grass •BlueElephant - is blue, blue like sky Copyright © 2008, Anton Shevchuk, http://anton.shevchuk.name