Some useful meta setting methods (must read)

Some useful meta setting methods (must read)

<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no">

<meta name="format-detection" content="telephone=no">

<meta name="apple-mobile-web-app-capable" content="yes">

<meta name="apple-mobile-web-app-status-bar-style" content="#6f9ddc">

<!-- How the page is encoded-->

<meta charset="utf-8">

<!-- Give priority to the latest versions of IE and Chrome -->

<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">

<!-- SEO, page keywords, each web page should have a unique set of keywords that describe the content of the web page-->

<meta name="keywords" content="">

<!-- SEO, page description, each web page should have a description tag of no more than 150 characters that accurately reflects the content of the web page-->

<meta name="description" content="">

<!-- Optimize the display of mobile browsers. The default zoom ratio is 1, and manual zooming is not allowed. If it is not a responsive site, do not use initial-scale or disable scaling. -->

<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">

<!-- Use webkit kernel to render the website -->

<meta name="renderer" content="webkit">

<!-- Baidu transcoding is prohibited-->

<meta http-equiv="Cache-Control" content="no-siteapp">

<!-- Icon added to the home screen-->

<!-- <link rel="icon" type="image/png" href="assets/i/favicon.png"> -->

<!-- After adding to home screen - enable WebApp full screen mode (Android) -->

<!-- <meta name="mobile-web-app-capable" content="yes"> -->

<!-- Icon added to the home screen (Android) -->

<!-- <link rel="icon" sizes="192x192" href="assets/i/[email protected]"> -->

<!-- After adding to home screen - enable WebApp full screen mode (iOS) -->

<!-- <meta name="apple-mobile-web-app-capable" content="yes"> -->

<!-- After adding to the home screen - set the background color of the status bar (iOS) -->

<!-- <meta name="apple-mobile-web-app-status-bar-style" content="black"> -->

<!-- Title after adding to home screen (iOS) -->

<!-- <meta name="apple-mobile-web-app-title" content="China Southern Office Automation" /> -->

<!-- Icon added to the home screen (iOS) -->

<!-- <link rel="apple-touch-icon-precomposed" href="assets/i/[email protected]"> -->

<!-- Icon added to the home screen (win8) -->

<!-- <meta name="msapplication-TileImage" content="assets/i/[email protected]"> -->

<!-- After adding to the home screen - set the background color of the status bar (win8) -->

<!-- <meta name="msapplication-TileColor" content="#0e90d2"> -->

<!-- Disable mobile phone number recognition (iOS) -->

<meta name="format-detection" content="telephone=no">

<!-- Disable mobile email recognition (Android) -->

<meta name="format-detection" content="email=no">

The above article on some useful meta setting methods (must read) is all the content that the editor shares with you. I hope it can give you a reference. I also hope that you will support 123WORDPRESS.COM.

Original URL: http://www.cnblogs.com/jiekk/p/5695031.html

<<:  Detailed steps for manually configuring the IP address in Linux

>>:  MySQL data type details

Recommend

Detailed explanation of count without filter conditions in MySQL

count(*) accomplish 1. MyISAM: Stores the total n...

Three implementation methods of Mysql copy table and grant analysis

How to quickly copy a table First, create a table...

Mysql 5.6.37 winx64 installation dual version mysql notes

If MySQL version 5.0 already exists on the machin...

Tutorial on using Docker Compose to build Confluence

This article uses the "Attribution 4.0 Inter...

MySQL gets the current date and time function

Get the current date + time (date + time) functio...

MySQL implements a solution similar to Oracle sequence

MySQL implements Oracle-like sequences Oracle gen...

MySQL Failover Notes: Application-Aware Design Detailed Explanation

1. Introduction As we all know, in the applicatio...

Where is the project location deployed by IntelliJ IDEA using Tomcat?

After IntelliJ IDEA deploys a Javaweb project usi...

Native js implements custom scroll bar component

This article example shares the specific code of ...

A simple way to build a Docker environment

First, let’s understand what Docker is? Docker is...

MySQL and MySQL Workbench Installation Tutorial under Ubuntu

Ubuntu install jdk: [link] Install Eclipse on Ubu...

A brief talk about cloning JavaScript

Table of contents 1. Shallow cloning 2. Deep clon...

A possible bug when MySQL executes the sum function on the window function

When using MySql's window function to collect...