DITA and SEO DITA AND SEO. Keith Schengili-Roberts, IXIASOFT

Size: px
Start display at page:

Download "DITA and SEO DITA AND SEO. Keith Schengili-Roberts, IXIASOFT"

Transcription

1 DITA and SEO Keith Schengili-Roberts, IXIASOFT Keith Schengili-Roberts IXIASOFT Keith Schengili-Roberts is a DITA Specialist at IXIASOFT, DITA evangelist and an awardwinning lecturer on Information Architecture at the University of Toronto. His popular industry blog DITAWriter.com has become a focal point on DITA resources and best practices. Connect with Keith on KeithIXIASOFT. There s a joke making the rounds that goes like this: where is the best place to hide a dead body? Answer: on the second page of a Google search result. The joke underscores the serious business of search engine optimization (SEO), the half-art/half-science discipline whose goal is to increase traffic to a web site by seeking improved search engine rankings on the major search engines such as Google, Yahoo!, and Bing. There are digital agencies out there whose raison d'être is to increase SEO for their client companies, but this focus is almost always for a company s marketing materials. In many cases, SEO for a company s technical documentation is an afterthought, if it is even thought of at all. Technical documentation is part of the digital and social media landscape, and there is evidence that would-be purchasers will sometimes look at and assess the quality of a product s documentation prior to buying a product. The after-purchase experience is also important, as users may have a need for product documentation when seeking more information on a particular function or trying to solve a problem. But if users can t find your documentation, it is a lost opportunity to engage with them. While there are some distinct SEO strategies for DITA documentation, the best thing you can do is to know your audience and write for them, as effective SEO for technical documentation is more about content relevancy than tricks. But First, a Story What made me first think of the subject of SEO and technical documentation was an incident that happened to me a few years ago when our washing machine stopped working in the middle of a cycle, filled with water. This happened late on a Sunday afternoon, so there was little to no chance of calling a repairperson to come and look at it immediately. Our family has two teenage girls, and let s just say we couldn t be without a working washing machine for too long. I Googled the washing machine manufacturer s name along with the phrase: not draining. What came up first were some YouTube videos, followed by handy tips provided by both users and professionals. In the end, the first result that came up was a video that provided me with all of the information I needed to know: a busted lid switch was the source of the problem. I used the information from the video to fix things enough to get the machine working again. When I called a repairperson the following day, I was able to not only tell him what the specific problem was, but also the replacement part number he needed to bring. As of June 2016, that video I found on YouTube has been viewed over 200,000 times; remember that this is a video about a broken washing machine with a very specific problem. I have worked in the technical documentation field for over a quarter-century, and I was curious to see whether or not the manual for the washing machine would turn up if I continued my search on the problem I encountered. After scanning through 10 more pages of search results on Google, I gave up. I did a different search looking specifically for the manual for the machine and then looked within it to see if it had a solution to my problem. To give the manufacturer (and their tech docs team) credit, the problem I ran into was described in the troubleshooting section of the manual. The correct solution to my problem was not. While it s likely that the manual was not updated significantly since the launch of the product, not providing the correct information on what was clearly a common problem (remember those 200K views for the YouTube video?) was definitely a lost opportunity for that manufacturer to effectively engage with their users. Wanting to learn more, I began to investigate the murky world of SEO from a technical documentation and DITA perspective. 88

2 Understanding How Search Engines Work To better understand SEO, you first need to know how search engines work. Whether it is Google, Bing, or Yahoo!, they all share a common process that can be broken down into three separate phases: spidering content, indexing it, and then providing that information on demand to users who query the search engine. Before enhancing the SEO of your technical content, you first need to ask whether or not you want to do so in the first place. While most companies will want their technical content findable on major search engines, there are scenarios where this is not desirable. For example, a company may want the search engines to favour results from their marketing material over their technical content. Or a company may have its own search engine designed specifically for technical content and want to direct their users to use the company s own customized and specialized search experience. In these instances, you can simply tell the search engine spiders not to index a page or set of pages. There are two ways to accomplish this: through adding a metadata value to your webpages or by using robots.txt. To exclude an individual webpage from being indexed by any search engine, simply add the following in the header: <meta name="robots" content="noindex"/> The only downside of this approach is that this only works on a page-by-page level. To exclude a specific directory full of technical content from being indexed use robots.txt instead. To disallow a spider from crawling all of the content in the /tech-docs/sub-directory on your webserver, you upload a robots.txt file containing the following content: User-agent: * Disallow: /tech-docs/ This text basically tells the spider (which is the user-agent in this case) to ignore everything contained in the /tech-docs/ folder. Google Webmasters has good information on how to add more specific noindex metadata to your webpages available at com/webmasters/answer/93710?rd=1. For more detailed information on how to customize a robots.txt file, see: If on the other hand you want to draw web spiders to your technical content webpages, you can assist them by providing them with a sitemap.xml file. This file neatly encapsulates what information is available, and it contains the following information: The parent URL for the web site The URL of a specific page The date that webpage was last updated (optional) How frequently the page is likely to change (optional), and The priority of a given page in comparison to other pages on the web site (optional) If you opt for an application to automatically create this for you, by default it will create a file that assigns a high priority value to the top-most webpages in your technical content hierarchy, and then provides progressively lower values for pages further down. You can tweak this priority value to increase the likelihood of your most important pages being present in a search result. The priority value ranges from 0.0 to 1.0, with the highest value being 1.0. Before you set the priority of all your technical content webpages to 1.0, know that if you set a high priority to everything, the priority value will be discounted and averaged out by the search engines, so tweak the priority values judiciously. For more information on this XML format and how to use it effectively, see The Relevance of Metadata from an SEO Perspective Metadata can be embedded within DITA maps and topics which can then be expressed by the DITA Open Toolkit (DITA-OT) as equivalent XHTML metadata when that content is outputted. From an SEO perspective though, not all metadata is equal. 89

3 Depending on which metadata is added to the original DITA content, the DITA-OT produces equivalent metadata for XHTML. Not all of this metadata is actually used by the major search engines, but it is good for authors to know about the DITA-to-XHTML relationships that are currently available. Within DITA, metadata is added to bookmaps using the bookmeta element and to the prolog of individual topics. Metadata content within DITA is then expressed in XHTML output primarily as Dublin Core metadata. What is Dublin Core? It is a set of metadata designed to semantically describe web content. Since the mid 2000s, the Dublin Core Metadata Initiative organization has worked with the World Wide Web Consortium the standards body responsible for HTML and the HTTP protocol towards this goal. The DITA-OT uses a subset of Simple Dublin Core v1.1 when outputting to XHTML, so when you add metadata to your DITA maps and topics, it is expressed at output as Dublin Core. The illustration in Figure 1 shows how DITA metadata within a topic is converted by the DITA-OT to its Dublin Core equivalents. For reference, Table 1 describes DITA metadata and its Dublin Core equivalent at output. Figure 1: DITA Topic Metadata and its Equivalent XHTML Output in Dublin Core Table 1: DITA map and topic elements and their equivalents in Dublin Core XHTML Output from the DITA-OT 90

4 Figure 2: DITA Keyword Metadata and its Expression in XHTML While Dublin Core is long established and has support from the broader web-based community, Google and the other major search engines do not appear to do much with this. Having the Dublin Core Metadata available can be advantageous from a web content management perspective, as a WCMS can pull Dublin Core values from webpages and use them for providing a faceted search, for example. But from an SEO perspective, Dublin Core is not the answer. The relevance of keyword metadata and SEO is also worth mentioning. In the early days of SEO, a common strategy was to load up a webpage with keywords. There is a mechanism in DITA for incorporating them by using the keyword element, and the DITA-OT dutifully expresses this information both as Dublin Core and as keywords metadata in the header of an XHTML webpage, as Figure 2 shows. Sadly, this is yet another technique not recognized from an SEO standpoint. Google has gone on record as saying that they do not use the keywords metatag in their web ranking algorithm, as it was too often stuffed with irrelevant information and was subject to abuse. So are there any good metadata practices that can be used from a DITA perspective? Yes, and what s more, they fit nicely with DITA best practices for writing effective topics. What is Important to Google? From a metadata perspective, there are two things that search engines like Google make use of: the title and short description of a webpage. It is also important to understand that SEO is not a passive process, as search engines keep track of information that users click on. Creating an effective internal hierarchy of content may also play a role in SEO, and DITA s relationship tables may help in this area. And last but far from least, know your users and tailor your technical content to their needs. Content associated with the initial title element of a DITA topic is expressed by the DITA-OT in the header of a webpage. In fact, it is expressed twice: as an equivalent XHTML title element and as a Dublin Core counterpart ( DC.Title ). The title of any webpage is in most cases used as the default search result link to a web page. This is where DITA best practices comes into play; avoid using boilerplate titles for your topics ( Introduction ), and instead make them descriptive ( What You Need to Know About the Vebulon 5 ). Also, do not overload them with keywords ( All About the Vebulon 5 Vebulon Five, Fifth Vebulon, vebulon five, 5th vebulon, vebulon the fifth, Acme Corporation s Vebulon Five ). Not only will this be seen as a ruse to improve ranking using keywords and drive the SEO for that webpage down, but it is likely to be confusing to a reader viewing the link. Finally, make your titles concise: Google truncates long titles that are over characters long. From an SEO standpoint, effective short descriptions are also important. The shortdesc element is used to contain a short description for a topic within DITA, and the DITA-OT outputs this as description metadata in the header of an XHTML webpage. When present, short descriptions are displayed immediately below the title link of a search result webpage on the search engine, as Figure 3 shows. 91

5 Figure 3: An example as to how a short description is used to describe a webpage within a search engine This example also nicely illustrates how a lengthy short description may be automatically truncated by the search engine. While DITA short description best practices suggest two full sentences, Google truncates this in its search results to about 156 characters. While short descriptions are not directly factored as part of the search engine rankings for a webpage, user behaviours are. Google, for example, measures click-through rates (CTR), so a well-written, descriptive short description will ensure more click-throughs. Again, this fits well with DITA best practices for short descriptions. A wellwritten short description tells the would-be reader on the search engine results page why the page link is worth clicking on. Per topic type, here s what your short description should aim for: Task: tell users what they can accomplish Concept: tell users about what you are describing and why they should care Reference: tell users what the referenced item does or what it can be used for Troubleshooting: describe the symptoms of a problem a user may encounter and let them know that this topic can help So don t simply reiterate the title, instead tell your users what they can accomplish once they have read the topic. Another metric thought to influence webpage ranking is the number of links to a page. More weight is applied from external URLs pointing to a webpage than internal ones, but an internal hierarchy counts as well. DITA has a nice built-in solution for this: relationship tables. The trick here is not to go overboard, but to emphasize topics within a relationship table that are critical for understanding and working with the subject of your content. Adding relationship tables to DITA content is considered a DITA best practice, and it may also prove to add to SEO as well. Having effective titles, useful short descriptions, and properly implementing relationship tables are all ways that you can enhance the SEO of your DITA-based technical content. Even better, they all emphasize DITA best practices, so this is a win-win situation both for your documentation and for your users. While these techniques are worth knowing, it became evident to me that the more you can effectively engage with your audience providing them with the information they need when and where they need it the better your content will do in terms of SEO. 92

6 Write to Engage Your Audience Many SEO-oriented web sites talk about how to trick the likes of Google (which, let s face it, is probably not the best approach), but from a technical writing perspective I would argue that it is really all about knowing your audience, being honest with them, and ensuring that you deliver relevant content. If you think back to the original washing machine example, it is clear that they were not anticipating the needs of their users adequately, leaving open a content hole that a video creator on YouTube was able to fill. And while the problem that arose may not have been anticipated prior to the publication of the original manual, a subsequent edition definitely could have addressed it. Ultimately the manufacturer passed up an opportunity to engage with its users, potentially hurting its brand. This example underscores how important it is to anticipate users needs and to address them in the technical documentation. If information is poorly described or not targeted to the right audience, users will not find it. It s that simple. This brings us back to some of the first principles of Content Strategy: Know your users! Why have they come to your content? What are they seeking to accomplish? A content strategy is why having personas and scenarios to guide your technical writers should be a priority, as it can guide them in the creation of effective documentation fitting the needs of your users. The more technical writers come to understand who their users are and the circumstances that are likely to bring them to your documentation, the better the SEO will be for individual webpages, because relevant content rises to the top in searches. Consider again the case of the broken washing machine. It has a section in its documentation on troubleshooting, that combined the particular problem I encountered with a Won t Drain/Won t Spin/Wet Load section. This is relatively close to what I entered into the search engine when I looked up [product name] not draining, but the original title is not phrased in a way that is likely to come up in an online search. There was no short description in the original troubleshooting documentation, and it did not address the specific problem I ran into. When you put all of this together, it is no wonder that the original technical documentation was ranked as poorly as it was by the search engine. Another DITA best practice that comes into play in terms of writing effective content is minimalism. Meet the needs of your users as concisely as possible. Major search engines like Google have invested significant resources into parsing human language requests, so consider phrasing your DITA topics to answer a query. Keep in mind that DITA and its topic types can help shape the dialog between technical writers and their audience: Concept: what is this thing and what is it for? Reference: what are the correct settings? Task: how do I accomplish this procedure? Troubleshooting: how do I fix this problem I am having? If technical writers can answer these questions for the particular scenarios in which users are likely to ask them, the content will be more relevant and will naturally rise in search engine rankings. Summing Up You now have a basis for better optimizing your DITA technical content for search engines and users seeking information. Making your content relevant to your users is a win-win situation, as your users find the information they need when and where they need it. Effective, concise titles and short descriptions will generate more clickthroughs by users, which in turn will aid with search engine ranking of your technical content. You can also tweak things by adding a sitemap.xml to help spiders find and index your content, and effective use of relationship tables may also help search engines determine what information you consider important for users to know. The use of metadata in your content is far from useless, but knowing what to concentrate on is half the battle. Finally, I would urge people not to think in terms of SEO tricks ; the best thing you can do is to know your audience and write for them. Effective and long-term SEO rewards those who choose to engage with their customers rather than trying to trick search engines with cheap ploys. 93

How To Construct A Keyword Strategy?

How To Construct A Keyword Strategy? Introduction The moment you think about marketing these days the first thing that pops up in your mind is to go online. Why is there a heck about marketing your business online? Why is it so drastically

More information

power up your business SEO (SEARCH ENGINE OPTIMISATION)

power up your business SEO (SEARCH ENGINE OPTIMISATION) SEO (SEARCH ENGINE OPTIMISATION) SEO (SEARCH ENGINE OPTIMISATION) The visibility of your business when a customer is looking for services that you offer is important. The first port of call for most people

More information

Site Audit Boeing

Site Audit Boeing Site Audit 217 Boeing Site Audit: Issues Total Score Crawled Pages 48 % 13533 Healthy (3181) Broken (231) Have issues (9271) Redirected (812) Errors Warnings Notices 15266 41538 38 2k 5k 4 k 11 Jan k 11

More information

Site Audit SpaceX

Site Audit SpaceX Site Audit 217 SpaceX Site Audit: Issues Total Score Crawled Pages 48 % -13 3868 Healthy (649) Broken (39) Have issues (276) Redirected (474) Blocked () Errors Warnings Notices 4164 +3311 1918 +7312 5k

More information

The Ultimate Guide for Content Marketers. by SEMrush

The Ultimate Guide for Content Marketers. by SEMrush The Ultimate Guide for Content Marketers by SEMrush Table of content Introduction Who is this guide for? 1 2 3 4 5 Content Analysis Content Audit Optimization of Existing Content Content Creation Gap Analysis

More information

SEO: SEARCH ENGINE OPTIMISATION

SEO: SEARCH ENGINE OPTIMISATION SEO: SEARCH ENGINE OPTIMISATION SEO IN 11 BASIC STEPS EXPLAINED What is all the commotion about this SEO, why is it important? I have had a professional content writer produce my content to make sure that

More information

A PRACTICE BUILDERS white paper. 8 Ways to Improve SEO Ranking of Your Healthcare Website

A PRACTICE BUILDERS white paper. 8 Ways to Improve SEO Ranking of Your Healthcare Website A PRACTICE BUILDERS white paper 8 Ways to Improve SEO Ranking of Your Healthcare Website More than 70 percent of patients find their healthcare providers through a search engine. This means appearing high

More information

Table of Contents. Introduction. Audience, Intent & Authority. Depth, Unique Value & User Experience. The Nuts & Bolts of SEO. Enhancing Your Content

Table of Contents. Introduction. Audience, Intent & Authority. Depth, Unique Value & User Experience. The Nuts & Bolts of SEO. Enhancing Your Content Table of Contents Introduction Audience, Intent & Authority Depth, Unique Value & User Experience The Nuts & Bolts of SEO Enhancing Your Content Editing & Final Touches Summary Introduction The Importance

More information

What is SEO? Search Engine Optimization 101

What is SEO? Search Engine Optimization 101 What is SEO? Search Engine Optimization 101 What is Search Engine Optimization (SEO)? Paid Search Listings SEO is the practice of improving and promoting a website to increase the number of Organic visitors

More information

SEO WITH SHOPIFY: DOES SHOPIFY HAVE GOOD SEO?

SEO WITH SHOPIFY: DOES SHOPIFY HAVE GOOD SEO? TABLE OF CONTENTS INTRODUCTION CHAPTER 1: WHAT IS SEO? CHAPTER 2: SEO WITH SHOPIFY: DOES SHOPIFY HAVE GOOD SEO? CHAPTER 3: PRACTICAL USES OF SHOPIFY SEO CHAPTER 4: SEO PLUGINS FOR SHOPIFY CONCLUSION INTRODUCTION

More information

What is SEO? { Search Engine Optimization }

What is SEO? { Search Engine Optimization } What is SEO? { Search Engine Optimization } The use of various techniques to improve a web site's ranking in the search engines and thus attract more visitors. - en.wiktionary.org/ wiki/seo The process

More information

SETTING METADATA IN YOUR JOOMLA! SITE JUGCN April 2017 presented by Danico Enterprises Inc.

SETTING METADATA IN YOUR JOOMLA! SITE JUGCN April 2017 presented by Danico Enterprises Inc. SETTING METADATA IN YOUR JOOMLA! SITE JUGCN April 2017 presented by Danico Enterprises Inc. 1 AGENDA What is metadata? What are meta tags? Why do you need either of them? How do you create them? Where

More information

A Letting agency s shop window is no longer a place on the high street, it is now online

A Letting agency s shop window is no longer a place on the high street, it is now online A Letting agency s shop window is no longer a place on the high street, it is now online 1 Let s start by breaking down the two ways in which search engines will send you more traffic: 1. Search Engine

More information

Online Copywriting Tips and Search Engine Optimisation.

Online Copywriting Tips and Search Engine Optimisation. Online Copywriting Tips and Search Engine Optimisation www.finalsite.co.uk A Bit About Me. Alta Justus, Director of Marketing @ Finalsite UK Over 17 years commercial experience marketing both online and

More information

Site Audit Virgin Galactic

Site Audit Virgin Galactic Site Audit 27 Virgin Galactic Site Audit: Issues Total Score Crawled Pages 59 % 79 Healthy (34) Broken (3) Have issues (27) Redirected (3) Blocked (2) Errors Warnings Notices 25 236 5 3 25 2 Jan Jan Jan

More information

SEO Services. Climb up the Search Engine Ladder

SEO Services. Climb up the Search Engine Ladder SEO Services Climb up the Search Engine Ladder 2 SEARCH ENGINE OPTIMIZATION Increase your Website s Visibility on Search Engines INTRODUCTION 92% of internet users try Google, Yahoo! or Bing first while

More information

Telkomtelstra Corporate Website Increase a Business Experience through telkomtelstra Website

Telkomtelstra Corporate Website Increase a Business Experience through telkomtelstra Website Telkomtelstra Corporate Website Increase a Business Experience through telkomtelstra Website Award for Innovation in Corporate Websites Asia Pacific Stevie Awards 2016 Table of Content Telkomtelstra Website

More information

Question No : 1 Web spiders carry out a key function within search. What is it? Choose one of the following:

Question No : 1 Web spiders carry out a key function within search. What is it? Choose one of the following: Volume: 199 Questions Question No : 1 Web spiders carry out a key function within search. What is it? Choose one of the following: A. Indexing the site B. Ranking the site C. Parsing the site D. Translating

More information

This basic guide will be useful in situations where:

This basic guide will be useful in situations where: Content Marketing at its core is about planning information that is thoughtful about the needs and interests of target customer groups as they take the journey through the buying cycle, interacting with

More information

SEO 101 YOUR GUIDE TO GETTING STARTED

SEO 101 YOUR GUIDE TO GETTING STARTED SEO 101 YOUR GUIDE TO GETTING STARTED What is Search? 2 The simple definition is that Search is what happens when people look for your specific website or search for services/products your company provides.

More information

THE ULTIMATE SEO MIGRATION GUIDE

THE ULTIMATE SEO MIGRATION GUIDE THE ULTIMATE SEO MIGRATION GUIDE How to avoid a drop in ranking when launching a new website YOU KNOW THAT IT S TIME TO REBUILD YOUR WEBSITE, THERE IS ALWAYS THAT NAGGING CONCERN THAT THE NEW WEBSITE WILL

More information

Four Keys to Creating a Winning SEO Strategy for Healthcare

Four Keys to Creating a Winning SEO Strategy for Healthcare Four Keys to Creating a Winning SEO Strategy for Healthcare SEO Tactics Technical SEO On-Page SEO Off-Site SEO Measure Your SEO Technical SEO What is technical SEO? A strong technical foundation will give

More information

6 WAYS Google s First Page

6 WAYS Google s First Page 6 WAYS TO Google s First Page FREE EBOOK 2 CONTENTS 03 Intro 06 Search Engine Optimization 08 Search Engine Marketing 10 Start a Business Blog 12 Get Listed on Google Maps 15 Create Online Directory Listing

More information

All-In-One-Designer SEO Handbook

All-In-One-Designer SEO Handbook All-In-One-Designer SEO Handbook Introduction To increase the visibility of the e-store to potential buyers, there are some techniques that a website admin can implement through the admin panel to enhance

More information

Below, we will walk through the three main elements of the algorithm, which include Domain Attributes, On-Page and Off-Page factors.

Below, we will walk through the three main elements of the algorithm, which include Domain Attributes, On-Page and Off-Page factors. Search engine optimization is the active practicing of improving your websites ability to rank in the natural search engine results. Each of the major search engines have a proprietary algorithm that makes

More information

Full Website Audit. Conducted by Mathew McCorry. Digimush.co.uk

Full Website Audit. Conducted by Mathew McCorry. Digimush.co.uk Full Website Audit Conducted by Mathew McCorry Digimush.co.uk 1 Table of Contents Full Website Audit 1 Conducted by Mathew McCorry... 1 1. Overview... 3 2. Technical Issues... 4 2.1 URL Structure... 4

More information

SEO According to Google

SEO According to Google SEO According to Google An On-Page Optimization Presentation By Rachel Halfhill Lead Copywriter at CDI Agenda Overview Keywords Page Titles URLs Descriptions Heading Tags Anchor Text Alt Text Resources

More information

Top 10 pre-paid SEO tools

Top 10 pre-paid SEO tools Top 10 pre-paid SEO tools Introduction In historical terms, Google regularly updates its search algorithms judging by the previous years. Predictions for the 2016 tell us that the company work process

More information

You got a website. Now what?

You got a website. Now what? You got a website I got a website! Now what? Adriana Kuehnel Nov.2017 The majority of the traffic to your website will come through a search engine. Need to know: Best practices so ensure your information

More information

G U I D E T O S E O O N - P A G E E L E M E N T S F O R B U S I N E S S W E B S I T E S

G U I D E T O S E O O N - P A G E E L E M E N T S F O R B U S I N E S S W E B S I T E S G U I D E T O S E O O N - P A G E E L E M E N T S F O R B U S I N E S S W E B S I T E S 1. Target Audience Establish your website s target audience. Don t attempt to have your website content appeal to

More information

SEO PROPOSAL YOUR SEO CAMPAIGN YOUR SEO PROPOSAL CAMPAIGN STRATEGY

SEO PROPOSAL YOUR SEO CAMPAIGN YOUR SEO PROPOSAL CAMPAIGN STRATEGY SEO PROPOSAL CAMPAIGN STRATEGY YOUR SEO CAMPAIGN WorkWave Marketing sets out to find you the right leads that will convert at a higher rate. We do not obsess about increasing page rankings, but over time

More information

Endless Monetization

Endless Monetization Hey Guys, So, today we want to bring you a few topics that we feel compliment's the recent traffic, niches and keyword discussions. Today, we want to talk about a few different things actually, ranging

More information

1. Conduct an extensive Keyword Research

1. Conduct an extensive Keyword Research 5 Actionable task for you to Increase your website Presence Everyone knows the importance of a website. I want it to look this way, I want it to look that way, I want this to fly in here, I want this to

More information

How to do an On-Page SEO Analysis Table of Contents

How to do an On-Page SEO Analysis Table of Contents How to do an On-Page SEO Analysis Table of Contents Step 1: Keyword Research/Identification Step 2: Quality of Content Step 3: Title Tags Step 4: H1 Headings Step 5: Meta Descriptions Step 6: Site Performance

More information

Web Design Process. Step 4: Digital Marketing of Your Website via SEO. Step 4: Digital Marketing of Your Website via SEO

Web Design Process. Step 4: Digital Marketing of Your Website via SEO. Step 4: Digital Marketing of Your Website via SEO Web Design Process Step 4: Digital Marketing of Your Website via SEO Step 4: Digital Marketing of Your Website via SEO Now that your website is online, the visitors will come knocking down the door of

More information

SEO Training. Breakdown and Itinerary

SEO Training. Breakdown and Itinerary Breakdown and Itinerary Search Simplified Become an SEO pro with Branded3 The SEO team at Branded3 are the UK s leading authority on search engine optimisation. We use our know-how to boost online visibility

More information

Thursday, 26 January, 12. Web Site Design

Thursday, 26 January, 12. Web Site Design Web Site Design Not Just a Pretty Face Easy to update Responsive (mobile, tablet and web-friendly) Fast loading RSS enabled Connect to social channels Easy to update To me, that means one platform, WordPress.

More information

How to Drive More Traffic to Your Website in By: Greg Kristan

How to Drive More Traffic to Your Website in By: Greg Kristan How to Drive More Traffic to Your Website in 2019 By: Greg Kristan In 2018, Bing Drove 30% of Organic Traffic to TM Blast By Device Breakdown The majority of my overall organic traffic comes from desktop

More information

Search Engine Visibility Analysis

Search Engine Visibility Analysis 2018 Search Engine Visibility Analysis We do the market research, so you don t have to! Report For www.yourclientsite.com Contents Introduction... 2 Website Analysis and Recommendations... 3 Current Status

More information

SEARCH ENGINE MARKETING (SEM)

SEARCH ENGINE MARKETING (SEM) D I G I TA L M A R K E T I N G S E A R C H E N G I N E O P T I M I Z AT I O N ( S E O ) SEARCH ENGINE MARKETING (SEM) C O N T E N T S T R AT E G Y SEARCH ENGINE OPTIMIZATION (SEO) 90% of all website traffic

More information

Search Engine Optimisation Basics for Government Agencies

Search Engine Optimisation Basics for Government Agencies Search Engine Optimisation Basics for Government Agencies Prepared for State Services Commission by Catalyst IT Neil Bertram May 11, 2007 Abstract This document is intended as a guide for New Zealand government

More information

SEARCH ENGINE OPTIMIZATION ALWAYS, SOMETIMES, NEVER

SEARCH ENGINE OPTIMIZATION ALWAYS, SOMETIMES, NEVER SEARCH ENGINE OPTIMIZATION ALWAYS, SOMETIMES, NEVER ADVICE FOR LAW FIRM MARKETERS CONSULTWEBS.COM GETMORE@CONSULTWEBS.COM (800) 872-6590 1 SEARCH ENGINE OPTIMIZATION ALWAYS, SOMETIMES, NEVER ADVICE FOR

More information

SEO Toolkit Keyword and Competitor Research and On Page Optimisation

SEO Toolkit Keyword and Competitor Research and On Page Optimisation SEO Toolkit Keyword and Competitor Research and On Page Optimisation Marketing & Public Relations Department University of Newcastle February 2013 Version 1.0 SEO Toolkit Contents What is SEO? and the

More information

An Introductory Guide: SEO Best Practices

An Introductory Guide: SEO Best Practices An Introductory Guide: SEO Best Practices Learn the Essentials for Creating a Search Engine Friendly Website Brought to you by SEO Tips and Best Practices SEO (Search Engine Optimization) is the process

More information

ELEVATESEO. INTERNET TRAFFIC SALES TEAM PRODUCT INFOSHEETS. JUNE V1.0 WEBSITE RANKING STATS. Internet Traffic

ELEVATESEO. INTERNET TRAFFIC SALES TEAM PRODUCT INFOSHEETS. JUNE V1.0 WEBSITE RANKING STATS. Internet Traffic SALES TEAM PRODUCT INFOSHEETS. JUNE 2017. V1.0 1 INTERNET TRAFFIC Internet Traffic Most of your internet traffic will be provided from the major search engines. Social Media services and other referring

More information

Search Engines. Charles Severance

Search Engines. Charles Severance Search Engines Charles Severance Google Architecture Web Crawling Index Building Searching http://infolab.stanford.edu/~backrub/google.html Google Search Google I/O '08 Keynote by Marissa Mayer Usablity

More information

Why it Really Matters to RESNET Members

Why it Really Matters to RESNET Members Welcome to SEO 101 Why it Really Matters to RESNET Members Presented by Fourth Dimension at the 2013 RESNET Conference 1. 2. 3. Why you need SEO How search engines work How people use search engines

More information

The Continuous SEO Process. WebExpo 2016

The Continuous SEO Process. WebExpo 2016 The Continuous SEO Process WebExpo 2016 SEO needs TLC SEO needs TLC The nature of SEO SEO is continuous by nature. So why aren t we? SEO Authority & Trust Content Content Content Technical Foundation SEO

More information

Europcar International Franchisee Websites Search Engine Optimisation

Europcar International Franchisee Websites Search Engine Optimisation Introduction Everybody would like their site to be found easily on search engines. There is no magic that can guarantee this, but there are some principles that by following will help in your search engine

More information

SEO PROPOSAL YOUR SEO CAMPAIGN YOUR SEO PROPOSAL CAMPAIGN STRATEGY

SEO PROPOSAL YOUR SEO CAMPAIGN YOUR SEO PROPOSAL CAMPAIGN STRATEGY SEO PROPOSAL CAMPAIGN STRATEGY YOUR SEO CAMPAIGN Mr. Pipeline sets out to find you the right leads that will convert at a higher rate. We do not obsess about increasing page rankings, but over time will

More information

10 STEPS TO BUILD UP A GOOD SEO

10 STEPS TO BUILD UP A GOOD SEO The SEO (search engine optimization) tools enable the company to improve their website s accessibility instantly and easily and to attain the top ranking in the search results. By typing any keyword, you

More information

SEO KEYWORD SELECTION

SEO KEYWORD SELECTION SEO KEYWORD SELECTION Building Your Online Marketing Campaign on Solid Keyword Foundations TABLE OF CONTENTS Introduction Why Keyword Selection is Important 01 Chapter I Different Types of Keywords 02

More information

DMI Exam PDDM Professional Diploma in Digital Marketing Version: 7.0 [ Total Questions: 199 ]

DMI Exam PDDM Professional Diploma in Digital Marketing Version: 7.0 [ Total Questions: 199 ] s@lm@n DMI Exam PDDM Professional Diploma in Digital Marketing Version: 7.0 [ Total Questions: 199 ] https://certkill.com Topic break down Topic No. of Questions Topic 1: Search Marketing (SEO) 21 Topic

More information

What Are The SEO Benefits from Online Reviews and UGC?

What Are The SEO Benefits from Online Reviews and UGC? Online Reviews: The Benefits, Best Practices and More. By: Joe Vernon on www.gravitatedesign.com Growing up I was told by my parents not to care what others thought of me but to continue being who I was.

More information

the magazine of the Marketing Research and Intelligence Association YEARS OF RESEARCH INTELLIGENCE A FUTURESPECTIVE

the magazine of the Marketing Research and Intelligence Association YEARS OF RESEARCH INTELLIGENCE A FUTURESPECTIVE the magazine of the Marketing Research and Intelligence Association vuemay 2010 5 YEARS OF RESEARCH INTELLIGENCE A FUTURESPECTIVE If You Want to Rank in Google, Start by Fixing Your Site You have an informative,

More information

SEO Meta Descriptions: The What, Why, and How

SEO Meta Descriptions: The What, Why, and How Topics Alexa.com Home > SEO > SEO Meta Descriptions: The What, Why, and How ABOUT THE AUTHOR: JENNIFER YESBECK SEO Meta Descriptions: The What, Why, and How 7 minute read When it comes to using content

More information

3 Media Web. Understanding SEO WHITEPAPER

3 Media Web. Understanding SEO WHITEPAPER 3 Media Web WHITEPAPER WHITEPAPER In business, it s important to be in the right place at the right time. Online business is no different, but with Google searching more than 30 trillion web pages, 100

More information

SEO News. 15 SEO Fixes for Better Rankings. For SEO, marketing books and guides, visit

SEO News. 15 SEO Fixes for Better Rankings. For SEO, marketing books and guides, visit SEO News SEO News and Updates as We Published So Far! For latest news, visit http://www.nigcworld.com/wp/seonews this week latest seo updates google bing yahooothers/ 15 SEO Fixes for Better Rankings 1.

More information

SEO for Healthcare Reaching Healthcare Consumers Through Search

SEO for Healthcare Reaching Healthcare Consumers Through Search Geonetric Webinar: March 2017 SEO for Healthcare Reaching Healthcare Consumers Through Search White Paper: Questions to Ask Your Potential SEO Agency Download: geonetric.com/seoquestions How Web Design

More information

HIGH-IMPACT SEO DIY IN 5 MINUTES SEO OR LESS. Digital Marketer Increase Engagement Series

HIGH-IMPACT SEO DIY IN 5 MINUTES SEO OR LESS. Digital Marketer Increase Engagement Series DIY SEO HIGH-IMPACT SEO IN 5 MINUTES OR LESS Digital Marketer Increase Engagement Series DIY SEO: HIGH-IMPACT SEO IN 5 MINUTES OR LESS Brought To You By: Digital Marketer PUBLISHED BY: HOW TO SEO A WORDPRESS

More information

Image Credit: Photo by Lukas from Pexels

Image Credit: Photo by Lukas from Pexels Are you underestimating the importance of Keywords Research In SEO? If yes, then really you are making huge mistakes and missing valuable search engine traffic. Today s SEO world talks about unique content

More information

A Guide to Improving Your SEO

A Guide to Improving Your SEO A Guide to Improving Your SEO Author Hub A Guide to Improving Your SEO 2/12 What is SEO (Search Engine Optimisation) and how can it help me to become more discoverable? This guide details a few basic techniques

More information

SEO Technical & On-Page Audit

SEO Technical & On-Page Audit SEO Technical & On-Page Audit http://www.fedex.com Hedging Beta has produced this analysis on 05/11/2015. 1 Index A) Background and Summary... 3 B) Technical and On-Page Analysis... 4 Accessibility & Indexation...

More information

Marketing & Back Office Management

Marketing & Back Office Management Marketing & Back Office Management Menu Management Add, Edit, Delete Menu Gallery Management Add, Edit, Delete Images Banner Management Update the banner image/background image in web ordering Online Data

More information

Introduction. But what about some of the lesser known SEO techniques?

Introduction. But what about some of the lesser known SEO techniques? Introduction When it comes to determine out what the best SEO techniques are for your inbound marketing campaign, the most basic strategies aren t that tough to figure out. If you ve been blogging or marketing

More information

On-Site Analysis. Alex Gurevich

On-Site Analysis.  Alex Gurevich On-Site Analysis www.nettology.net Alex Gurevich Thursday, October 13, 2016 Table of Contents On-Site Analysis... 3 Load Time Testing: http://www.nettology.net/... 3 Keywords to Optimize for:... 3 Load

More information

SEO Search Engine Optimization. ~ Certificate ~ For: WD QREN

SEO Search Engine Optimization. ~ Certificate ~ For:  WD QREN SEO Search Engine Optimization ~ Certificate ~ For: www.outsourcedhr.com WD02040214 QREN1050214 By www.websitedesign.co.za and www.search-engine-optimization.co.za Certificate added to domain on the: 4

More information

HubSpot Inbound Certification. I. Essentials

HubSpot Inbound Certification. I. Essentials HubSpot Inbound Certification I. Essentials Remember, consumers don t want to be sold to, they want to be educated, and inbound tactics can deliver the kind of information your prospects need to help them

More information

Get More Business From Your Website. Eat. Learn. Grow Your Business

Get More Business From Your Website. Eat. Learn. Grow Your Business Get More Business From Your Website Eat. Learn. Grow Your Business Agenda What s SEO? What s The Return? What Can I Do Now? What s SEO? Prepare yourself to talk the talk SEO Telling the search engines

More information

The Insanely Powerful 2018 SEO Checklist

The Insanely Powerful 2018 SEO Checklist The Insanely Powerful 2018 SEO Checklist How to get a perfectly optimized site with the 2018 SEO checklist Every time we start a new site, we use this SEO checklist. There are a number of things you should

More information

SEARCH ENGINE OPTIMIZATION Noun The process of maximizing the number of visitors to a particular website by ensuring that the site appears high on the list of results returned by a search engine such as

More information

Prime Prospects. Your Global Marketing Services Company SEO STRATEGY SHORTCUTS. Why is SEO so important?

Prime Prospects. Your Global Marketing Services Company SEO STRATEGY SHORTCUTS. Why is SEO so important? Prime Prospects Your Global Marketing Services Company SEO STRATEGY SHORTCUTS Why is SEO so important? LEARN ABOUT KEYWORD RESEARCH, MARKET RESEARCH AND COMPETITOR ANALYSIS Follow these simple methods

More information

Using WordPress Tags & Categories Effectively

Using WordPress Tags & Categories Effectively Using WordPress Tags & Categories Effectively About Me Professionally 5 years in SEO & WordPress 4 years at marketing agencies Started CBDM 18 months ago CBDM Mission Statement Bring enterprise-level SEO

More information

Give Your DITA wings with taxonomy & modern web design. Joe Pairman

Give Your DITA wings with taxonomy & modern web design. Joe Pairman Give Your DITA wings with taxonomy & modern web design Joe Pairman What do we all want? What do we all want? ~ Free beer What do we all want? ~ Free beer ~ We want our content to be effective What do we

More information

Business Forum Mid Devon. Optimising your place on search engines

Business Forum Mid Devon. Optimising your place on search engines Optimising your place on search engines What do I know? Professional copywriter since 1996 Words inform Google and Bing Content is now king on Google Work on SEO campaigns for clients Who are Oxygen? Who

More information

2018 SEO CHECKLIST. Use this checklist to ensure that you are optimizing your website by following these best practices.

2018 SEO CHECKLIST. Use this checklist to ensure that you are optimizing your website by following these best practices. 2018 SEO CHECKLIST Your website should be optimized to serve your users. This checklist gives you the best practices for Search Engine Optimization (SEO) whether you are a freelancer, small business, SEO

More information

8 Building Traffic, Making Money, and Measuring Success

8 Building Traffic, Making Money, and Measuring Success Building Traffic, Making Money, and Measuring Success There are plenty of people who will sell you snake oil they claim can gain more traffic. You don t have to go far on Google to find plenty of balderdash

More information

Search Engine Optimization

Search Engine Optimization for Business Search Engine Optimization SEO Defined Search Engine Optimization is a tactic used to help websites better index for the keywords and key phrases specific to business product or services when

More information

EBOOK. On-Site SEO Made MSPeasy Everything you need to know about Onsite SEO

EBOOK. On-Site SEO Made MSPeasy Everything you need to know about Onsite SEO EBOOK On-Site SEO Made MSPeasy Everything you need to know about Onsite SEO K SEO easy ut Onsite SEO What is SEO & How is it Used? SEO stands for Search Engine Optimisation. The idea of SEO is to improve

More information

Inbound Website. How to Build an. Track 1 SEO and SOCIAL

Inbound Website. How to Build an. Track 1 SEO and SOCIAL How to Build an Inbound Website Track 1 SEO and SOCIAL In this three part ebook series, you will learn the step by step process of making a strategic inbound website. In part 1 we tackle the inner workings

More information

Online Copywriting. The Importance of Effective Online Content Writing for Your Business

Online Copywriting. The Importance of Effective Online Content Writing for Your Business Online Copywriting The Importance of Effective Online Content Writing for Your Business Contents Introduction Online Copywriting & the Modern Business Studies & Stats What this Means for You & Your Business

More information

Case Study: Best Strategy To Rank Your Content On Google

Case Study: Best Strategy To Rank Your Content On Google Case Study: Best Strategy To Rank Your Content On Google SEOPressor Connect Presents: Case Study: Best Strategy To Rank Your Content On Google Copyright 2016 SEOPressor Connect All Rights Reserved 1 There

More information

THE ULTIMATE BEGINNER S GUIDE TO SEO FOR SMALL BUSINESS A GUIDE TO SEO 1

THE ULTIMATE BEGINNER S GUIDE TO SEO FOR SMALL BUSINESS A GUIDE TO SEO 1 THE ULTIMATE BEGINNER S GUIDE TO SEO FOR SMALL BUSINESS A GUIDE TO SEO 1 1 4 Part 1: SEO overview What is SEO? Why your business needs SEO How to develop an SEO strategy Part 4: Keywords How to find the

More information

The Ultimate On-Page SEO Checklist

The Ultimate On-Page SEO Checklist The Ultimate On-Page SEO Checklist This on-page SEO guide provides an introduction to some of the SEO copywriting techniques I use to increase traffic to my clients websites. If you re looking to improve

More information

AN SEO GUIDE FOR SALONS

AN SEO GUIDE FOR SALONS AN SEO GUIDE FOR SALONS AN SEO GUIDE FOR SALONS Set Up Time 2/5 The basics of SEO are quick and easy to implement. Management Time 3/5 You ll need a continued commitment to make SEO work for you. WHAT

More information

By Snappy. Advanced SEO

By Snappy. Advanced SEO Advanced SEO 1 Table of Contents Chapter 4 Page Speed 9 Site Architecture 13 Content Marketing 25 Rich Results 01 Page Speed Advanced SEO ebook CHAPTER 1 Page Speed CHAPTER 1 CHAPTER ONE Page Speed ONE

More information

What the is SEO? And how you can kick booty in the interwebs game

What the is SEO? And how you can kick booty in the interwebs game What the F^@& is SEO? And how you can kick booty in the interwebs game 1 WHAT THE F^$& is SEO?? SEO (SEARCH ENGINE OPTIMIZATION) is the process of improving your website so that it attracts more visitors

More information

Azon Master Class. By Ryan Stevenson Guidebook #10 Google and YouTube Marketing

Azon Master Class. By Ryan Stevenson   Guidebook #10 Google and YouTube Marketing Azon Master Class By Ryan Stevenson https://ryanstevensonplugins.com/ Guidebook #10 Google and YouTube Marketing Table of Contents 1. Google Analytics 2. Google Webmaster Tools 3. Google Plus 4. YouTube

More information

PLUS. Checklist. 5 top tips. on content marketing. Marketing WHS HR Business Growth International Trade Legal

PLUS. Checklist. 5 top tips. on content marketing. Marketing WHS HR Business Growth International Trade Legal PLUS 5 top tips on content marketing Checklist Marketing WHS HR Business Growth International Trade Legal The ABCS SEO Checklist How are you performing with your SEO? Take our checklist and find out! Check

More information

VIDEO 1: WHY ARE INBOUND WEBSITES IMPORTANT?

VIDEO 1: WHY ARE INBOUND WEBSITES IMPORTANT? VIDEO 1: WHY ARE INBOUND WEBSITES IMPORTANT? Hi there! I m Angela with HubSpot Academy. In this class, we will be discussing how to use website pages as a part of your inbound marketing strategy. Think

More information

10 SEO MISTAKES TO AVOID

10 SEO MISTAKES TO AVOID 10 SEO S TO AVOID DURING YOUR NEXT SITE RE Redesigning your website isn t just an exercise in aesthetics. Sure, the purely visual elements of your newly designed website will likely get the most attention,

More information

SEARCH ENGINE OPTIMIZATION

SEARCH ENGINE OPTIMIZATION SEARCH ENGINE OPTIMIZATION By: IT-Freedom 1 Page Compiled By - INDEX 1) What is SEO?. 3 2) Why Website need SEO?.... 5 3) How Does Search Engine Work... 6 4) Why Content Is Important In SEO 8 5) Type of

More information

Search Engine Optimization. MBA 563 Week 6

Search Engine Optimization. MBA 563 Week 6 Search Engine Optimization MBA 563 Week 6 SEARCH ENGINE OPTIMIZATION (SEO) Search engine marketing 2 major methods TWO MAJOR METHODS - OBJECTIVE IS TO BE IN THE TOP FEW SEARCH RESULTS 1. Search engine

More information

Top 3 Marketing Metrics You Should Measure in Google Analytics

Top 3 Marketing Metrics You Should Measure in Google Analytics Top 3 Marketing Metrics You Should Measure in Google Analytics Presented By Table of Contents Overview 3 How to Use This Knowledge Brief 3 Metric to Measure: Traffic 4 Direct (Acquisition > All Traffic

More information

Information Retrieval Spring Web retrieval

Information Retrieval Spring Web retrieval Information Retrieval Spring 2016 Web retrieval The Web Large Changing fast Public - No control over editing or contents Spam and Advertisement How big is the Web? Practically infinite due to the dynamic

More information

SEOHUNK INTERNATIONAL D-62, Basundhara Apt., Naharkanta, Hanspal, Bhubaneswar, India

SEOHUNK INTERNATIONAL D-62, Basundhara Apt., Naharkanta, Hanspal, Bhubaneswar, India SEOHUNK INTERNATIONAL D-62, Basundhara Apt., Naharkanta, Hanspal, Bhubaneswar, India 752101. p: 305-403-9683 w: www.seohunkinternational.com e: info@seohunkinternational.com DOMAIN INFORMATION: S No. Details

More information

Getting the most from your websites SEO. A seven point guide to understanding SEO and how to maximise results

Getting the most from your websites SEO. A seven point guide to understanding SEO and how to maximise results Getting the most from your websites SEO A seven point guide to understanding SEO and how to maximise results About this document SEO: What is it? This document is aimed at giving a SEO: What is it? 2 SEO

More information

When it comes to your website redesign, form and function need to be a package deal.

When it comes to your website redesign, form and function need to be a package deal. Redesigning your website isn t just an exercise in aesthetics. Sure, the purely visual elements of your newly designed website will likely get the most attention, but remember: a great website redesign

More information

Global Search Engine Optimization (SEO) Services.

Global Search Engine Optimization (SEO) Services. Global Search Engine Optimization (SEO) Services www.globalizationpartners.com Global Search Engine Optimization (SEO) Services Globalization Partners International (GPI) provides one of the most comprehensive

More information

sitecrafting.com

sitecrafting.com sitecrafting.com hello@sitecrafting.com SEARCH ENGINE OPTIMIZATION In its simplest form, Search Engine Optimization is communicating to search engines the intentions of your website so that your website

More information