Without further ado, let the text begin

<title> Taobao - tao! I like < / title >

Copy the code

Use description and keyword tags (300 characters or less preferred)

<meta name="description" content="Taobao.com - Asia's largest online trading platform, providing all kinds of clothing, beauty, home, digital, phone/point recharge... Hundreds of millions of quality products, while providing guaranteed transaction (payment after receipt of goods) and other safe transaction protection services, and by the merchant to provide return commitment, damage repair and other consumer protection services, let you feel at ease to enjoy online shopping fun!" />

<meta name="aplus-xplug" content="NONE">

<meta name="keyword" content="Taobao, pay treasure, online shopping, C2C, online trading, trading market, online trading, trading market, online shopping, online selling, shopping website, group purchase, online trade, safe shopping, e-commerce, rest assured to buy, supply and sale information, online shop, price, auction, open a shop on the net, the network shopping, discounts, free open a shop, online shopping, channels, stores" />

Copy the code

Add Alt and title to the image

<img src="https://gw.alicdn.com/tfs/TB1DP0yAoY1gK0jSZFMXXaWcVXa-1190-70.png" alt="Tao Shop" style="width:1190px; height:70px"/>

Copy the code

Use semantic tags

<h1> Headline </h1>

<h2> Big title </h2>

The artice > article < / artice >

Copy the code

The “Use Open Graph Tag” (OG) tag is an additional meta tag in the HTML section of a page that allows any web page to become a rich object in a social network. It was first launched by Facebook in 2010 and has been endorsed by other major social media platforms (LinkedIn, Google +, etc.).

In HTML, it might look like this:

<meta name="og:title" property="og:title" content="Your Awesome Open Graph Title">

Copy the code

You can improve the performance of social media pages by setting up Open Graph. Gracefully turn this property into clicks. “Use nofollow property”

“What is nofollow?” Nofollow is the attribute value of the A tag in the HTML page. The meaning of this tag is to tell search engines “do not follow links on this page or do not follow this particular link”. “What does nofollow do?” 1. To prevent untrusted content, the most common is to obtain external links in spam messages and comments on blogs, and to prevent pages from pointing to some garbage pages and sites. 2. To prevent paid links from influencing Google’s search results rankings. 3. Guide crawler to grasp effective pages, avoid crawler to grasp some meaningless pages, affecting crawler grasping efficiency.

Nofollow basic usage

For
tags

Tell search engines (crawlers) that they don’t need to track any links on the page.

<meta name="robots" content="nofollow" />

Copy the code

The “used” “tag” tells search engines (crawlers) that links with this attribute do not need to be tracked

(Generally recommended)

<a href="javascript:" class="back" rel="nofollow"></a>

Copy the code