SlideShare a Scribd company logo
1 of 26
Guidelines For Website/CMS Development
Created By : Amit Kute (Quality Analyst)
1. Page Title & Favicon
2. Navigability
3. Accessibility
4. Conventionality
5. Basic Code Structure
6. SEO standards for Front-End Coders
7. SEO standards for Back-End Coders
8. CMS Features that help with SEO
9. Consistency
10. HOW TO IMPROVE PAGE LOAD TIME
11. Keywords in URLs
12. Mailto Link
13. Summary of All points
Index
Created By : Amit Kute (Quality Analyst)
Page Title and Favicon Should present on page
For Ex.: Domain Name- Page Title or Page title only
Page Title & Favicon
Created By : Amit Kute (Quality Analyst)
 Keep the structure of your primary navigation simple (and near the top of your page).
 Include navigation in the footer of your site.
 Use breadcrumbs on every page (except for the homepage) so people are aware of their navigation trail.
 Include a search box near the top of your site so visitors can search by keywords.
 Don't offer too many navigation options on a page.
 Don't dig too deep. In most cases, it’s best to keep your navigation to no more than three levels deep. (Check
out this article for more clarity around flat vs. deep navs.)
 Include links within your page copy, and make it clear where those links lead to.
 Another pointer: Once you've settled on what your site's main (top) navigation will be, keep it consistent. The
labels and location of your navigation should remain the same on each and every page of your site
Navigability
Created By : Amit Kute (Quality Analyst)
Accessibility
Created By : Amit Kute (Quality Analyst)
Conventionality
There are certain web design conventions which, over the years, internet users have become increasingly
familiar with. Such conventions include:
 Having the main navigation be at the top (or left side) of a page
 Having a logo at the top left (or center) of a page
 Having that logo be clickable so it always brings a visitor back to the homepage
 Having links change color/appearance when you hover over them
Created By : Amit Kute (Quality Analyst)
Add Basic Code Structure
Created By : Amit Kute (Quality Analyst)
To make it easy for front-end coders and back-end developers to have a list of items to consider when doing their part of the website building
process, I've made a list of standards to go by:
•Usage of H tags and other style elements
Limit the usage of H tags (H1, H2, H3, etc) and <strong> tags to non-repetitive content. That means don’t use these HTML tags on site-wide
headings, sidebars, footers, or anything that is repeated across the website or multiple pages. Instead, use a regular div. Reserve these tags for
unique content on every page.
•Fonts
As much as possible, use machine-readable fonts. An alternative is to use font-replacement such as @font-face. As a last resort, use an image to
display text. Place the image in an image tag (rather than using CSS) with alt text that repeats what is written in the image, word-for-word.
•Images
For images that are stylistic elements, using CSS background images is fine, but for content elements, found within a body of text that is unique to a
page, use a regular image tag. For logos, use an image tag rather than using text replacement, as seen here. http://css-tricks.com/rethinking-css-
image-replacement/ (see “The New Way”). Alt tags should contain the words seen in the image.
•Site speed
A web page should not take more than 3 seconds to load on a 10Mb connection. The front-end coder is not responsible for the entirety of what
makes a page fast or slow, but they do have a role to play. That means consolidating CSS and javascript files, loading javascript at the end of the
page, creating sprites and seeking other size-cutting opportunities.
•Making content readable
Search engines have trouble reading content that is within <script> tags or that loads dynamically (such as AJAX). Anything that does not come
loaded as the page loads will most likely not get picked up by search engines. Do not use dynamically loading content unless it is explicitly stated in
the website specification document.
SEO standards for Front-End Coders
Created By : Amit Kute (Quality Analyst)
Canonicalization
A canonical URL is the version of any given web page’s URL that we want indexed by search engines. Canonicalization is the process by which we
achieve that result. Every page on a website should only be accessible from one URL. Additional URL parameters can be added, if handled using
techniques described here.
•Dealing with www and index pages.
By default, all of the following URLs should redirect to www.example.com
example.com
example.com/index.(.*)
www.example.com/index.(.*)
There may be cases where a website owner prefers to use the non-www version or a subdomain as their root domain. That is fine as long as all
other versions redirect to that chosen version.
•Dealing with trailing slashes
URLs may have a trailing slash “/” at the end. Sometimes they do not. The server should always redirect to one or the other. Ideally, the version with
the slash is preferred.
Example:
www.example.com/blue-widget should 301 redirect to www.example.com/blue-widget/
Note that this is not an issue with root URLs, such as www.example.com. A slash will never appear at the end of that URL.
•Canonicalizing subpages
A product page on an e-commerce website that is accessible at 3 different URLs is not a good idea. The example demonstrates a problem stemming
from the CMS architecture. Ideally, there should only be one URL.
/product/reebok-black-crossfit-shoe/ET256/
/shoes/product/reebok-black-crossfit-shoe/ET256/
/shoes/fitness/product/reebok-black-crossfit-shoe/ET256/
SEO standards for Back-End Coders
Created By : Amit Kute (Quality Analyst)
In this case, where categories and subcategories appear to be constantly changing, the best URL to use is /product/reebok-black-crossfit-
shoe/ET256/. No other URLs should open this page. It’s okay to add parameters to the URL. For example, the existence of the following URLs
is okay if the canonical link tag is used.
/product/reebok-black-crossfit-shoe/ET256/
/product/reebok-black-crossfit-shoe/ET256/?cat=shoes
/product/reebok-black-crossfit-shoe/ET256/?cat=shoes&subcat=fitness
For each of the URLs above, what’s called the canonical link tag should be added to the <head> section of the page. The purpose of the
canonical link tag is to tell search engines which version of a URL to index. As mentioned earlier, the version of the URL that we want to index
is /product/reebok-black-crossfit-shoe/ET256/. In this case, the canonical link tag should look like this on all 3 of the above URLs:
<link href="http://www.example.com/product/reebok-black-crossfit-shoe/ET256/" rel="canonical" >
Side note: for tracking purposes, marketers need to add additional parameters to a URL. Those parameters should not be overridden and they
should not cause the page to give a 404 error.
Created By : Amit Kute (Quality Analyst)
CMS Features that help with SEO
Since most websites use some sort of content management system, it means that the SEO specialist will need to rely on the CMS to help them modify
website content to reach their objectives. Here are CMS capabilities that help with SEO:
•Ability to modify title tags and key meta data on all pages. That means the content that goes into the following areas:
<title>{CONTENT}</title>
(by default, use this: {Page Name} | {Company Name})
<meta name="description" content="{CONTENT}" >
(by default, leave this empty)
<meta name="robots" content="{CONTENT}" >
(by default, use index,follow)
<link href="{CONTENT}" rel="canonical" >
(by default, match the URL of the page. So if the URL of the page is http://www.example.com/product/reebok-black-crossfit-shoe/ET256/ then the
canonical link tag should look like: <link href="http://www.example.com/product/reebok-black-crossfit-shoe/ET256/ " rel="canonical" >
CMS Features that help with SEO
Created By : Amit Kute (Quality Analyst)
•Updating of the sitemap.xml file:
The CMS should be able to generate a sitemap.xml file and place it in the root folder of the website (www.example.com/sitemap.xml). It should contain all
main pages of the website and auto-update when new pages are added or some are removed. This is the format to follow:
<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
<url>
<loc>http://www.example.com/</loc>
<lastmod>2005-01-01</lastmod>
</url>
</urlset>
When a website contains multiple sections, for example a WordPress-controlled blog, and some other self-contained sections, it may be easier to generate a
separate sitemap for each section. These can be linked to using a sitemap index file, as seen in this
example: https://www.bluefountainmedia.com/sitemap.xml
•Updating of the robots.txt file
The robots.txt file controls where search engine crawlers are allowed to go. This file should be editable via the CMS. Magneto has a list of subdirectories that
should be disallowed by default that should be included from the start.
•Editable page sections
Although it is not an SEO requirement, it is beneficial for tracking purposes to be able to edit various parts of all web pages on the website. These include:
Immediately after the opening <head> tag.
Immediately before the closing </head> tag.
Immediately after the opening <body> tag.
Immediately before the closing </body> tag.
There are various tracking scripts that help in obtaining information about user behavior that need to be added to any of these areas. There should be a way
to add a tag to all pages as well as each page individually.
Created By : Amit Kute (Quality Analyst)
•Image uploads
When images are uploaded via the CMS, file names should be editable rather than being rewritten to a random string by the CMS. Image titles and alt
tags should be editable (they usually are in most content management systems).
•Page speed
To optimize page load time, various back-end load time cutting techniques should be employed, a long list of which can be found
here: http://gtmetrix.com/recommendations.html. Pages should not take more than 3 seconds to load.
•404 configuration
When a random URL is accessed, the server should return a 404 response - not a 302, 200 or any other.
Created By : Amit Kute (Quality Analyst)
In addition to keeping your sites navigation consistent, the overall look and feel throughout your website pages should be consistent. These include
elements such as background, color scheme and even the font type and size. These are the general areas where consistency can have a positive impact
on your usability and UX.
Consistency
Created By : Amit Kute (Quality Analyst)
HOW TO IMPROVE PAGE LOAD TIME
There are many ways to improve this metric, but here are some of the most common:
File Compression: Reduces the size of the CSS, HTML, JavaScript, images, and other web elements. (Check out ImageOptim for Mac to compress images).
Magnification: Optimizes the code by removing unused code, white spaces, comments, etc. (Here are some cool tips/tools you can use to minify JavaScript
and CSS.)
Reducing redirects: Each time a web page redirects the browser to another server, the user faces an additional time for the request-response cycle to
complete. Best to get rid of these if possible.
CDN: A content delivery network (CDN) puts content geographically closer to your users so they can receive it quicker.
HOW TO IMPROVE PAGE LOAD TIME
Created By : Amit Kute (Quality Analyst)
It's still the case that using the keywords you're targeting for rankings in your URLs is a solid idea. This is true for several reasons.
First, keywords in the URL help indicate to those who see your URL on social media, in an email, or as they hover on a link to click that they're getting
what they want and expect, as shown in the Metafilter example below (note how hovering on the link shows the URL in the bottom-left-hand corner):
Keywords in URLs: still a good thing
Created By : Amit Kute (Quality Analyst)
Second, URLs get copied and pasted regularly, and when
there's no anchor text used in a link, the URL itself serves
as that anchor text (which is still a powerful input for
rankings), e.g.:
Third, and finally, keywords in the URL show up in search
results, and research has shown that the URL is one of the
most prominent elements searchers consider when selecting
which site to click.
CreatedBy:AmitKute(QualityAnalyst)
Shorter > longer
Shorter URLs are, generally speaking, preferable. You don't need to take this to the extreme, and if your URL is already less than 50-60 characters, don't
worry about it at all. But if you have URLs pushing 100+ characters, there's probably an opportunity to rewrite them and gain value.
This isn't a direct problem with Google or Bing—the search engines can process long URLs without much trouble. The issue, instead, lies with usability
and user experience. Shorter URLs are easier to parse, to copy and paste, to share on social media, and to embed, and while these might all add up to
only a fractional improvement in sharing or amplification, every tweet, like, share, pin, email, and link matters (either directly or, often, indirectly).
Created By : Amit Kute (Quality Analyst)
This doesn't mean that if the title of your piece is "My Favorite 7 Bottles of Islay
Whisky (and how one of them cost me my entire Lego collection)" that your URL has
to be a perfect match. Something like
randswhisky.com/my-favorite-7-islay-whiskies would be just fine. So, too would
randswhisky.com/blog/favorite-7-bottles-islay-whisky
or variations on these. The matching accomplishes a mostly human-centric goal, i.e.
to imbue an excellent sense of what the web user will find on the page through the
URL and then to deliver on that expectation with the headline/title.
It's for this same reason that we strongly recommend keeping the page title (which
engines display prominently on their search results pages) and the visible headline on
the page a close match as well—one creates an expectation, and the other delivers
on it
For example, above, you'll see two URLs I shared on Facebook. In the first, it's
wholly unclear what you might find on the page. It's in the news section the BBC's
website, but beyond that, there's no way to know what you might find there. In
the second, however, Pacific Standard magazine has made it easy for the URL to
give insight into the article's content, and then the title of the piece delivers:
Match URLs to titles most of the time (when it makes sense)
Created By : Amit Kute (Quality Analyst)
The hash (or URL fragment identifier) has historically been a way to send a visitor to a specific location on a given page
(e.g. Moz's blog posts use the hash to navigate you to a particular comment, like this one from my wife). Hashes can
also be used like tracking parameters (e.g. randswhisky.com/lagavulin#src=twitter). Using URL hashes for something
other than these, such as showing unique content than what's available on the page without the hash or wholly
separate pages is generally a bad idea.
There are exceptions, like those Google enables for developers seeking to use the hashbang format for dynamic AJAX
applications, but even these aren't nearly as clean, visitor-friendly, or simple from an SEO perspective as statically
rewritten URLs. Sites from Amazon to Twitter have found tremendous benefit in simplifying their previously complex
and hash/hashbang-employing URLs. If you can avoid it, do.
Avoid hashes in URLs that create separate/unique content
Created By : Amit Kute (Quality Analyst)
Created By : Amit Kute (Quality Analyst)
Created By : Amit Kute (Quality Analyst)
CreatedBy:AmitKute(QualityAnalyst)
CreatedBy:AmitKute(QualityAnalyst)
Created By : Amit Kute (Quality Analyst)
Created By : Amit Kute (Quality Analyst)

More Related Content

What's hot

Is your website's speed letting you down?
Is your website's speed letting you down?Is your website's speed letting you down?
Is your website's speed letting you down?Ray Krzeminski
 
Gabriel Gayhart - XML Pointer File Example
Gabriel Gayhart - XML Pointer File ExampleGabriel Gayhart - XML Pointer File Example
Gabriel Gayhart - XML Pointer File Examplelinkedinsys
 
SynapseIndia wordpress installation training module
SynapseIndia wordpress installation training moduleSynapseIndia wordpress installation training module
SynapseIndia wordpress installation training moduleSynapseIndia
 
Tour of sh404SEF - SEO and security for Joomla
Tour of sh404SEF - SEO and security for JoomlaTour of sh404SEF - SEO and security for Joomla
Tour of sh404SEF - SEO and security for Joomlavdrover
 
Advanced Web Development
Advanced Web DevelopmentAdvanced Web Development
Advanced Web DevelopmentRobert J. Stein
 
Experts Exchange - SEO Demystified Part 2
Experts Exchange - SEO Demystified Part 2Experts Exchange - SEO Demystified Part 2
Experts Exchange - SEO Demystified Part 2Experts Exchange
 
Alfresco_Web_Quick_Start_User_Help_Enterprise.pdf
Alfresco_Web_Quick_Start_User_Help_Enterprise.pdfAlfresco_Web_Quick_Start_User_Help_Enterprise.pdf
Alfresco_Web_Quick_Start_User_Help_Enterprise.pdfJeff Smith
 
Joomla 15 Quickstart
Joomla 15 QuickstartJoomla 15 Quickstart
Joomla 15 QuickstartAmyStephen
 
Introduction to WordPress
Introduction to WordPressIntroduction to WordPress
Introduction to WordPressChris Carrel
 
Web performance optimization (WPO)
Web performance optimization (WPO)Web performance optimization (WPO)
Web performance optimization (WPO)Mariusz Kaczmarek
 
WordPress London - Favourite Plugins - March 2012
WordPress London - Favourite Plugins - March 2012WordPress London - Favourite Plugins - March 2012
WordPress London - Favourite Plugins - March 2012Graham Armfield
 
Joomla Template Tutorial
Joomla Template TutorialJoomla Template Tutorial
Joomla Template Tutorialbrighteyes
 
Wordpress Plugin Recommendations
Wordpress Plugin RecommendationsWordpress Plugin Recommendations
Wordpress Plugin Recommendationslewis887
 
SEO Recommendations for WordPress
SEO Recommendations for WordPressSEO Recommendations for WordPress
SEO Recommendations for WordPressNick Roshon
 

What's hot (17)

Is your website's speed letting you down?
Is your website's speed letting you down?Is your website's speed letting you down?
Is your website's speed letting you down?
 
Gabriel Gayhart - XML Pointer File Example
Gabriel Gayhart - XML Pointer File ExampleGabriel Gayhart - XML Pointer File Example
Gabriel Gayhart - XML Pointer File Example
 
SynapseIndia wordpress installation training module
SynapseIndia wordpress installation training moduleSynapseIndia wordpress installation training module
SynapseIndia wordpress installation training module
 
Tour of sh404SEF - SEO and security for Joomla
Tour of sh404SEF - SEO and security for JoomlaTour of sh404SEF - SEO and security for Joomla
Tour of sh404SEF - SEO and security for Joomla
 
Advanced Web Development
Advanced Web DevelopmentAdvanced Web Development
Advanced Web Development
 
Experts Exchange - SEO Demystified Part 2
Experts Exchange - SEO Demystified Part 2Experts Exchange - SEO Demystified Part 2
Experts Exchange - SEO Demystified Part 2
 
Alfresco_Web_Quick_Start_User_Help_Enterprise.pdf
Alfresco_Web_Quick_Start_User_Help_Enterprise.pdfAlfresco_Web_Quick_Start_User_Help_Enterprise.pdf
Alfresco_Web_Quick_Start_User_Help_Enterprise.pdf
 
Joomla 15 Quickstart
Joomla 15 QuickstartJoomla 15 Quickstart
Joomla 15 Quickstart
 
Introduction to WordPress
Introduction to WordPressIntroduction to WordPress
Introduction to WordPress
 
Seocheck
SeocheckSeocheck
Seocheck
 
Web performance optimization (WPO)
Web performance optimization (WPO)Web performance optimization (WPO)
Web performance optimization (WPO)
 
WordPress London - Favourite Plugins - March 2012
WordPress London - Favourite Plugins - March 2012WordPress London - Favourite Plugins - March 2012
WordPress London - Favourite Plugins - March 2012
 
Joomla Template Tutorial
Joomla Template TutorialJoomla Template Tutorial
Joomla Template Tutorial
 
Wordpress Plugin Recommendations
Wordpress Plugin RecommendationsWordpress Plugin Recommendations
Wordpress Plugin Recommendations
 
SEO Recommendations for WordPress
SEO Recommendations for WordPressSEO Recommendations for WordPress
SEO Recommendations for WordPress
 
Technical Seo
Technical SeoTechnical Seo
Technical Seo
 
aasdasda
aasdasdaaasdasda
aasdasda
 

Similar to Website Development Guidelines

Most Important On Page SEO elements
Most Important On Page SEO elementsMost Important On Page SEO elements
Most Important On Page SEO elementsSEOSMOPPC
 
Technical seo tips for web developers
Technical seo tips for web developersTechnical seo tips for web developers
Technical seo tips for web developersSingsys Pte Ltd
 
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
 
Website Architecture and Site Migration Guide (2015)
Website Architecture and Site Migration Guide (2015)Website Architecture and Site Migration Guide (2015)
Website Architecture and Site Migration Guide (2015)Sankar Ponnusamy
 
Designyourownblog.com On-Site SEO Auidt
Designyourownblog.com On-Site SEO AuidtDesignyourownblog.com On-Site SEO Auidt
Designyourownblog.com On-Site SEO AuidtJames Allen
 
WordPress SEO in 2014 - WordCamp Baltimore 2014
WordPress SEO in 2014 - WordCamp Baltimore 2014WordPress SEO in 2014 - WordCamp Baltimore 2014
WordPress SEO in 2014 - WordCamp Baltimore 2014Arsham Mirshah
 
A Crash Course in Technical SEO from Patrick Stox - Beer & SEO Meetup May 2019
A Crash Course in Technical SEO from Patrick Stox - Beer & SEO Meetup May 2019A Crash Course in Technical SEO from Patrick Stox - Beer & SEO Meetup May 2019
A Crash Course in Technical SEO from Patrick Stox - Beer & SEO Meetup May 2019patrickstox
 
Grow your Magento store: going multilingual and setting up a marketplace
Grow your Magento store: going multilingual and setting up a marketplaceGrow your Magento store: going multilingual and setting up a marketplace
Grow your Magento store: going multilingual and setting up a marketplacePromodo
 
Search engine optimization (seo) from Endeca & ATG
Search engine optimization (seo) from Endeca & ATGSearch engine optimization (seo) from Endeca & ATG
Search engine optimization (seo) from Endeca & ATGVignesh sitaraman
 
Website analysis report
Website analysis reportWebsite analysis report
Website analysis reportvimlesh88
 
SEO Friendly Website Design Guidelines
SEO Friendly Website Design GuidelinesSEO Friendly Website Design Guidelines
SEO Friendly Website Design GuidelinesRed Logics
 
On-Site SEO Audit Example
On-Site SEO Audit ExampleOn-Site SEO Audit Example
On-Site SEO Audit ExampleJames Allen
 
On-Site SEO Web 2.0 Expo 2010
On-Site SEO Web 2.0 Expo 2010On-Site SEO Web 2.0 Expo 2010
On-Site SEO Web 2.0 Expo 2010Rhea Drysdale
 
Get the best Seo training in Pune at brainmine.
Get the best Seo training in Pune at brainmine.Get the best Seo training in Pune at brainmine.
Get the best Seo training in Pune at brainmine.Seo Brainmine
 

Similar to Website Development Guidelines (20)

Most Important On Page SEO elements
Most Important On Page SEO elementsMost Important On Page SEO elements
Most Important On Page SEO elements
 
Website Audit Presentation
Website Audit PresentationWebsite Audit Presentation
Website Audit Presentation
 
Seo and analytics basics
Seo and analytics basicsSeo and analytics basics
Seo and analytics basics
 
Technical seo tips for web developers
Technical seo tips for web developersTechnical seo tips for web developers
Technical seo tips for web developers
 
Seo checklist
Seo checklistSeo checklist
Seo checklist
 
eGrove Systems Corporation - PrestaShop Development Services
eGrove Systems Corporation - PrestaShop Development ServiceseGrove Systems Corporation - PrestaShop Development Services
eGrove Systems Corporation - PrestaShop Development Services
 
Website Architecture and Site Migration Guide (2015)
Website Architecture and Site Migration Guide (2015)Website Architecture and Site Migration Guide (2015)
Website Architecture and Site Migration Guide (2015)
 
Designyourownblog.com On-Site SEO Auidt
Designyourownblog.com On-Site SEO AuidtDesignyourownblog.com On-Site SEO Auidt
Designyourownblog.com On-Site SEO Auidt
 
WordPress SEO in 2014 - WordCamp Baltimore 2014
WordPress SEO in 2014 - WordCamp Baltimore 2014WordPress SEO in 2014 - WordCamp Baltimore 2014
WordPress SEO in 2014 - WordCamp Baltimore 2014
 
Seo tutorial
Seo tutorialSeo tutorial
Seo tutorial
 
Foxtail Website Audit
Foxtail Website AuditFoxtail Website Audit
Foxtail Website Audit
 
A Crash Course in Technical SEO from Patrick Stox - Beer & SEO Meetup May 2019
A Crash Course in Technical SEO from Patrick Stox - Beer & SEO Meetup May 2019A Crash Course in Technical SEO from Patrick Stox - Beer & SEO Meetup May 2019
A Crash Course in Technical SEO from Patrick Stox - Beer & SEO Meetup May 2019
 
Grow your Magento store: going multilingual and setting up a marketplace
Grow your Magento store: going multilingual and setting up a marketplaceGrow your Magento store: going multilingual and setting up a marketplace
Grow your Magento store: going multilingual and setting up a marketplace
 
Search engine optimization (seo) from Endeca & ATG
Search engine optimization (seo) from Endeca & ATGSearch engine optimization (seo) from Endeca & ATG
Search engine optimization (seo) from Endeca & ATG
 
Website analysis report
Website analysis reportWebsite analysis report
Website analysis report
 
SEO Friendly Website Design Guidelines
SEO Friendly Website Design GuidelinesSEO Friendly Website Design Guidelines
SEO Friendly Website Design Guidelines
 
SEO FOR WORDPRESS
SEO FOR WORDPRESSSEO FOR WORDPRESS
SEO FOR WORDPRESS
 
On-Site SEO Audit Example
On-Site SEO Audit ExampleOn-Site SEO Audit Example
On-Site SEO Audit Example
 
On-Site SEO Web 2.0 Expo 2010
On-Site SEO Web 2.0 Expo 2010On-Site SEO Web 2.0 Expo 2010
On-Site SEO Web 2.0 Expo 2010
 
Get the best Seo training in Pune at brainmine.
Get the best Seo training in Pune at brainmine.Get the best Seo training in Pune at brainmine.
Get the best Seo training in Pune at brainmine.
 

Recently uploaded

Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, AdobeApidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobeapidays
 
Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024The Digital Insurer
 
Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsJoaquim Jorge
 
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...Neo4j
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdfhans926745
 
A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?Igalia
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfsudhanshuwaghmare1
 
presentation ICT roal in 21st century education
presentation ICT roal in 21st century educationpresentation ICT roal in 21st century education
presentation ICT roal in 21st century educationjfdjdjcjdnsjd
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...Martijn de Jong
 
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot TakeoffStrategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoffsammart93
 
Advantages of Hiring UIUX Design Service Providers for Your Business
Advantages of Hiring UIUX Design Service Providers for Your BusinessAdvantages of Hiring UIUX Design Service Providers for Your Business
Advantages of Hiring UIUX Design Service Providers for Your BusinessPixlogix Infotech
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)Gabriella Davis
 
GenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdfGenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdflior mazor
 
Developing An App To Navigate The Roads of Brazil
Developing An App To Navigate The Roads of BrazilDeveloping An App To Navigate The Roads of Brazil
Developing An App To Navigate The Roads of BrazilV3cube
 
Handwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsHandwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsMaria Levchenko
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationSafe Software
 
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProduct Anonymous
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationMichael W. Hawkins
 
Real Time Object Detection Using Open CV
Real Time Object Detection Using Open CVReal Time Object Detection Using Open CV
Real Time Object Detection Using Open CVKhem
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processorsdebabhi2
 

Recently uploaded (20)

Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, AdobeApidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
 
Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024
 
Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and Myths
 
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf
 
A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdf
 
presentation ICT roal in 21st century education
presentation ICT roal in 21st century educationpresentation ICT roal in 21st century education
presentation ICT roal in 21st century education
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...
 
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot TakeoffStrategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
 
Advantages of Hiring UIUX Design Service Providers for Your Business
Advantages of Hiring UIUX Design Service Providers for Your BusinessAdvantages of Hiring UIUX Design Service Providers for Your Business
Advantages of Hiring UIUX Design Service Providers for Your Business
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)
 
GenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdfGenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdf
 
Developing An App To Navigate The Roads of Brazil
Developing An App To Navigate The Roads of BrazilDeveloping An App To Navigate The Roads of Brazil
Developing An App To Navigate The Roads of Brazil
 
Handwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsHandwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed texts
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
 
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day Presentation
 
Real Time Object Detection Using Open CV
Real Time Object Detection Using Open CVReal Time Object Detection Using Open CV
Real Time Object Detection Using Open CV
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processors
 

Website Development Guidelines

  • 1. Guidelines For Website/CMS Development Created By : Amit Kute (Quality Analyst)
  • 2. 1. Page Title & Favicon 2. Navigability 3. Accessibility 4. Conventionality 5. Basic Code Structure 6. SEO standards for Front-End Coders 7. SEO standards for Back-End Coders 8. CMS Features that help with SEO 9. Consistency 10. HOW TO IMPROVE PAGE LOAD TIME 11. Keywords in URLs 12. Mailto Link 13. Summary of All points Index Created By : Amit Kute (Quality Analyst)
  • 3. Page Title and Favicon Should present on page For Ex.: Domain Name- Page Title or Page title only Page Title & Favicon Created By : Amit Kute (Quality Analyst)
  • 4.  Keep the structure of your primary navigation simple (and near the top of your page).  Include navigation in the footer of your site.  Use breadcrumbs on every page (except for the homepage) so people are aware of their navigation trail.  Include a search box near the top of your site so visitors can search by keywords.  Don't offer too many navigation options on a page.  Don't dig too deep. In most cases, it’s best to keep your navigation to no more than three levels deep. (Check out this article for more clarity around flat vs. deep navs.)  Include links within your page copy, and make it clear where those links lead to.  Another pointer: Once you've settled on what your site's main (top) navigation will be, keep it consistent. The labels and location of your navigation should remain the same on each and every page of your site Navigability Created By : Amit Kute (Quality Analyst)
  • 5. Accessibility Created By : Amit Kute (Quality Analyst)
  • 6. Conventionality There are certain web design conventions which, over the years, internet users have become increasingly familiar with. Such conventions include:  Having the main navigation be at the top (or left side) of a page  Having a logo at the top left (or center) of a page  Having that logo be clickable so it always brings a visitor back to the homepage  Having links change color/appearance when you hover over them Created By : Amit Kute (Quality Analyst)
  • 7. Add Basic Code Structure Created By : Amit Kute (Quality Analyst)
  • 8. To make it easy for front-end coders and back-end developers to have a list of items to consider when doing their part of the website building process, I've made a list of standards to go by: •Usage of H tags and other style elements Limit the usage of H tags (H1, H2, H3, etc) and <strong> tags to non-repetitive content. That means don’t use these HTML tags on site-wide headings, sidebars, footers, or anything that is repeated across the website or multiple pages. Instead, use a regular div. Reserve these tags for unique content on every page. •Fonts As much as possible, use machine-readable fonts. An alternative is to use font-replacement such as @font-face. As a last resort, use an image to display text. Place the image in an image tag (rather than using CSS) with alt text that repeats what is written in the image, word-for-word. •Images For images that are stylistic elements, using CSS background images is fine, but for content elements, found within a body of text that is unique to a page, use a regular image tag. For logos, use an image tag rather than using text replacement, as seen here. http://css-tricks.com/rethinking-css- image-replacement/ (see “The New Way”). Alt tags should contain the words seen in the image. •Site speed A web page should not take more than 3 seconds to load on a 10Mb connection. The front-end coder is not responsible for the entirety of what makes a page fast or slow, but they do have a role to play. That means consolidating CSS and javascript files, loading javascript at the end of the page, creating sprites and seeking other size-cutting opportunities. •Making content readable Search engines have trouble reading content that is within <script> tags or that loads dynamically (such as AJAX). Anything that does not come loaded as the page loads will most likely not get picked up by search engines. Do not use dynamically loading content unless it is explicitly stated in the website specification document. SEO standards for Front-End Coders Created By : Amit Kute (Quality Analyst)
  • 9. Canonicalization A canonical URL is the version of any given web page’s URL that we want indexed by search engines. Canonicalization is the process by which we achieve that result. Every page on a website should only be accessible from one URL. Additional URL parameters can be added, if handled using techniques described here. •Dealing with www and index pages. By default, all of the following URLs should redirect to www.example.com example.com example.com/index.(.*) www.example.com/index.(.*) There may be cases where a website owner prefers to use the non-www version or a subdomain as their root domain. That is fine as long as all other versions redirect to that chosen version. •Dealing with trailing slashes URLs may have a trailing slash “/” at the end. Sometimes they do not. The server should always redirect to one or the other. Ideally, the version with the slash is preferred. Example: www.example.com/blue-widget should 301 redirect to www.example.com/blue-widget/ Note that this is not an issue with root URLs, such as www.example.com. A slash will never appear at the end of that URL. •Canonicalizing subpages A product page on an e-commerce website that is accessible at 3 different URLs is not a good idea. The example demonstrates a problem stemming from the CMS architecture. Ideally, there should only be one URL. /product/reebok-black-crossfit-shoe/ET256/ /shoes/product/reebok-black-crossfit-shoe/ET256/ /shoes/fitness/product/reebok-black-crossfit-shoe/ET256/ SEO standards for Back-End Coders Created By : Amit Kute (Quality Analyst)
  • 10. In this case, where categories and subcategories appear to be constantly changing, the best URL to use is /product/reebok-black-crossfit- shoe/ET256/. No other URLs should open this page. It’s okay to add parameters to the URL. For example, the existence of the following URLs is okay if the canonical link tag is used. /product/reebok-black-crossfit-shoe/ET256/ /product/reebok-black-crossfit-shoe/ET256/?cat=shoes /product/reebok-black-crossfit-shoe/ET256/?cat=shoes&subcat=fitness For each of the URLs above, what’s called the canonical link tag should be added to the <head> section of the page. The purpose of the canonical link tag is to tell search engines which version of a URL to index. As mentioned earlier, the version of the URL that we want to index is /product/reebok-black-crossfit-shoe/ET256/. In this case, the canonical link tag should look like this on all 3 of the above URLs: <link href="http://www.example.com/product/reebok-black-crossfit-shoe/ET256/" rel="canonical" > Side note: for tracking purposes, marketers need to add additional parameters to a URL. Those parameters should not be overridden and they should not cause the page to give a 404 error. Created By : Amit Kute (Quality Analyst)
  • 11. CMS Features that help with SEO Since most websites use some sort of content management system, it means that the SEO specialist will need to rely on the CMS to help them modify website content to reach their objectives. Here are CMS capabilities that help with SEO: •Ability to modify title tags and key meta data on all pages. That means the content that goes into the following areas: <title>{CONTENT}</title> (by default, use this: {Page Name} | {Company Name}) <meta name="description" content="{CONTENT}" > (by default, leave this empty) <meta name="robots" content="{CONTENT}" > (by default, use index,follow) <link href="{CONTENT}" rel="canonical" > (by default, match the URL of the page. So if the URL of the page is http://www.example.com/product/reebok-black-crossfit-shoe/ET256/ then the canonical link tag should look like: <link href="http://www.example.com/product/reebok-black-crossfit-shoe/ET256/ " rel="canonical" > CMS Features that help with SEO Created By : Amit Kute (Quality Analyst)
  • 12. •Updating of the sitemap.xml file: The CMS should be able to generate a sitemap.xml file and place it in the root folder of the website (www.example.com/sitemap.xml). It should contain all main pages of the website and auto-update when new pages are added or some are removed. This is the format to follow: <?xml version="1.0" encoding="UTF-8"?> <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> <url> <loc>http://www.example.com/</loc> <lastmod>2005-01-01</lastmod> </url> </urlset> When a website contains multiple sections, for example a WordPress-controlled blog, and some other self-contained sections, it may be easier to generate a separate sitemap for each section. These can be linked to using a sitemap index file, as seen in this example: https://www.bluefountainmedia.com/sitemap.xml •Updating of the robots.txt file The robots.txt file controls where search engine crawlers are allowed to go. This file should be editable via the CMS. Magneto has a list of subdirectories that should be disallowed by default that should be included from the start. •Editable page sections Although it is not an SEO requirement, it is beneficial for tracking purposes to be able to edit various parts of all web pages on the website. These include: Immediately after the opening <head> tag. Immediately before the closing </head> tag. Immediately after the opening <body> tag. Immediately before the closing </body> tag. There are various tracking scripts that help in obtaining information about user behavior that need to be added to any of these areas. There should be a way to add a tag to all pages as well as each page individually. Created By : Amit Kute (Quality Analyst)
  • 13. •Image uploads When images are uploaded via the CMS, file names should be editable rather than being rewritten to a random string by the CMS. Image titles and alt tags should be editable (they usually are in most content management systems). •Page speed To optimize page load time, various back-end load time cutting techniques should be employed, a long list of which can be found here: http://gtmetrix.com/recommendations.html. Pages should not take more than 3 seconds to load. •404 configuration When a random URL is accessed, the server should return a 404 response - not a 302, 200 or any other. Created By : Amit Kute (Quality Analyst)
  • 14. In addition to keeping your sites navigation consistent, the overall look and feel throughout your website pages should be consistent. These include elements such as background, color scheme and even the font type and size. These are the general areas where consistency can have a positive impact on your usability and UX. Consistency Created By : Amit Kute (Quality Analyst)
  • 15. HOW TO IMPROVE PAGE LOAD TIME There are many ways to improve this metric, but here are some of the most common: File Compression: Reduces the size of the CSS, HTML, JavaScript, images, and other web elements. (Check out ImageOptim for Mac to compress images). Magnification: Optimizes the code by removing unused code, white spaces, comments, etc. (Here are some cool tips/tools you can use to minify JavaScript and CSS.) Reducing redirects: Each time a web page redirects the browser to another server, the user faces an additional time for the request-response cycle to complete. Best to get rid of these if possible. CDN: A content delivery network (CDN) puts content geographically closer to your users so they can receive it quicker. HOW TO IMPROVE PAGE LOAD TIME Created By : Amit Kute (Quality Analyst)
  • 16. It's still the case that using the keywords you're targeting for rankings in your URLs is a solid idea. This is true for several reasons. First, keywords in the URL help indicate to those who see your URL on social media, in an email, or as they hover on a link to click that they're getting what they want and expect, as shown in the Metafilter example below (note how hovering on the link shows the URL in the bottom-left-hand corner): Keywords in URLs: still a good thing Created By : Amit Kute (Quality Analyst)
  • 17. Second, URLs get copied and pasted regularly, and when there's no anchor text used in a link, the URL itself serves as that anchor text (which is still a powerful input for rankings), e.g.: Third, and finally, keywords in the URL show up in search results, and research has shown that the URL is one of the most prominent elements searchers consider when selecting which site to click. CreatedBy:AmitKute(QualityAnalyst)
  • 18. Shorter > longer Shorter URLs are, generally speaking, preferable. You don't need to take this to the extreme, and if your URL is already less than 50-60 characters, don't worry about it at all. But if you have URLs pushing 100+ characters, there's probably an opportunity to rewrite them and gain value. This isn't a direct problem with Google or Bing—the search engines can process long URLs without much trouble. The issue, instead, lies with usability and user experience. Shorter URLs are easier to parse, to copy and paste, to share on social media, and to embed, and while these might all add up to only a fractional improvement in sharing or amplification, every tweet, like, share, pin, email, and link matters (either directly or, often, indirectly). Created By : Amit Kute (Quality Analyst)
  • 19. This doesn't mean that if the title of your piece is "My Favorite 7 Bottles of Islay Whisky (and how one of them cost me my entire Lego collection)" that your URL has to be a perfect match. Something like randswhisky.com/my-favorite-7-islay-whiskies would be just fine. So, too would randswhisky.com/blog/favorite-7-bottles-islay-whisky or variations on these. The matching accomplishes a mostly human-centric goal, i.e. to imbue an excellent sense of what the web user will find on the page through the URL and then to deliver on that expectation with the headline/title. It's for this same reason that we strongly recommend keeping the page title (which engines display prominently on their search results pages) and the visible headline on the page a close match as well—one creates an expectation, and the other delivers on it For example, above, you'll see two URLs I shared on Facebook. In the first, it's wholly unclear what you might find on the page. It's in the news section the BBC's website, but beyond that, there's no way to know what you might find there. In the second, however, Pacific Standard magazine has made it easy for the URL to give insight into the article's content, and then the title of the piece delivers: Match URLs to titles most of the time (when it makes sense) Created By : Amit Kute (Quality Analyst)
  • 20. The hash (or URL fragment identifier) has historically been a way to send a visitor to a specific location on a given page (e.g. Moz's blog posts use the hash to navigate you to a particular comment, like this one from my wife). Hashes can also be used like tracking parameters (e.g. randswhisky.com/lagavulin#src=twitter). Using URL hashes for something other than these, such as showing unique content than what's available on the page without the hash or wholly separate pages is generally a bad idea. There are exceptions, like those Google enables for developers seeking to use the hashbang format for dynamic AJAX applications, but even these aren't nearly as clean, visitor-friendly, or simple from an SEO perspective as statically rewritten URLs. Sites from Amazon to Twitter have found tremendous benefit in simplifying their previously complex and hash/hashbang-employing URLs. If you can avoid it, do. Avoid hashes in URLs that create separate/unique content Created By : Amit Kute (Quality Analyst)
  • 21. Created By : Amit Kute (Quality Analyst)
  • 22. Created By : Amit Kute (Quality Analyst)
  • 25. Created By : Amit Kute (Quality Analyst)
  • 26. Created By : Amit Kute (Quality Analyst)