SEO, SMO

Search Engine Optimization (SEO) is a well-known term in frontend development. It’s all about metatags, descriptions, titles and semantic markups.

The lesser-known SMO stands for Social Media Optimization. Think of any social network (the most common are Facebook and Twitter) where your users can share your website. You need to set up the appropriate meta tags for these networks, too.

Using the right semantics

A valid, semantically-oriented HTML structure is essential if we want search engines to understand our page as much as possible. Therefore, certain rules should be met:

  • To properly split document content into logical pieces, always use HTML tags for content sectioning, such as <article>, <nav>, <header>, <main>, <footer>, <section>, <aside>.

  • Always use HTML tags that correspond with their content, e.g. <ul> or <ol> for lists etc. Never use semantically irrelevant tags just to achieve the desired appearance, e.g. using <table> to create a list of thumbnails for gallery is wrong, use <ul> with proper styling instead.

  • Make sure that the structure of headings reflects your content. You can quickly check and validate you current heading structure with a Chrome extension.

Structured data

Structured data is a part of Schema.org vocabulary, which is a part of the Semantic web concept. Its vision is to create a Web of linked data with the help of technologies that will enable people to create data stores on the Web, build vocabularies, and write rules for handling data. It is a standardized format for providing information about a page and classifying the page content. That means that by adding structured data to our page, we provide more accurate and targeted metadata about our content, which would otherwise be difficult or even impossible to get by automated machine-processing of our HTML content. This way we can help search engines understand our content better. One of the benefits is that Google and some other search engines can use this extra information to show customized search results, called rich results. Google supports various rich result types based on the type of our content. The full list of supported types with examples can be found at Google Search Handbook

Last updated