Last active
September 9, 2017 02:24
-
-
Save gettocat/c76f455a4626c1492dcb to your computer and use it in GitHub Desktop.
meta
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<head> | |
.... | |
<title>Заголовок страницы</title> | |
<meta name="title" content="Название страницы"/> | |
<meta name="keywords" content="ключевые фразы"> | |
<!-- Vk --> | |
<meta property="og:title" content="Название страницы"> | |
<link rel="shortcut icon" href="favicon" type="image/jpg"> | |
<meta name="description" content="Описание страницы"><!--VK get Description from here--> | |
<!-- Google search --> | |
<meta property="business:contact_data:locality" content="Город"/> | |
<meta property="business:contact_data:postal_code" content="Индекс"/> | |
<meta property="business:contact_data:country_name" content="Страна"/> | |
<meta property="business:contact_data:email" content="email.администратора"/> | |
<meta property="business:contact_data:website" content="http://адрес.сайта"/> | |
<!--Google+--> | |
<meta itemprop="name" content="Название сайта"/> | |
<meta itemprop="description" content="Описание сайта"/> | |
<meta itemprop="image" content="Ссылка на изображение"/> | |
<!--Twitter--> | |
<meta name="twitter:card" content="summary"/> | |
<meta name="twitter:site" content="Название сайта"/> | |
<meta name="twitter:description" content="Описание сайта"/> | |
<meta name="twitter:domain" content="домен.сайта"/> | |
<meta name="twitter:image:src" content="Ссылка на изображение"/> | |
<!--Facebook--> | |
<meta property="og:type" content="profile"/> | |
<meta property="og:description" content="Описание страницы"/> | |
<meta property="og:url" content="http://адрес.сайта"/> | |
<meta property="og:image" content="Ссылка на изображение"/> | |
<meta property="og:site_name" content="Название сайта"/> | |
<meta property="og:see_also" content="http://адрес.сайта"/> | |
.... | |
</head> | |
<body> | |
.... | |
<h1>Релевантный ключ</h1> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment