How does Google use HTML tags to enhance the search engine?

前端 未结 14 3459
夕颜
夕颜 2021-02-20 09:47

I know that Google’s search algorithm is mainly based on pagerank. However, it also does analysis and uses the structure of the document H1, H2,

14条回答
  •  孤城傲影
    2021-02-20 10:22

    To keep it painfully simple. Make your information architecture logical. If the most important elements for user comprehension are highlighted with headings and grouped logically, then the document is easier to interpret using information processing algorithms. Magically, it will also be easier for users to interpret. Remember the search engine algorithms were written by people trying to interpret language.

    The Basic Process is: Write well structured HTML - using header tags to indicate the most critical elements on the page. Use logical tags based on the structure of your information. Lists for lists, headers for major topics.

    Supply relevant alt tags and names for any visual elements, and then use simple css to arrange these elements.

    If the site works well for users and contains relevant information, you don't risk becoming a black listed spammer, and search engine algorithms will favor your page.

    I really enjoyed the book Transcending CSS for a clean explanation of properly structured HTML.

提交回复
热议问题