How to write HTML head in mobile device web development

How to write HTML head in mobile device web development

Copy code
The code is as follows:

<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0, user-scalable=no">
<meta name="MobileOptimized" content="320">
<link rel="stylesheet" href="../css/bootstrap.min.css">
<!-- <link type="text/css" rel="stylesheet" href="../css/masterControl.css">-->
<script src="../js/jquery-2.1.0.min.js"></script>
<script src="../js/bootstrap.min.js"></script>
<script type="text/javascript" src="../js/pushMsg.js" charset="utf-8"></script>
<!--<link rel="shortcut icon" type="image/x-icon" href="img/xian.png" />-->
<title>Receive push messages</title>
<style>
html
{
font-size: 62.5%;/*10 ÷ 16 × 100% = 62.5%*/
}
</style>
</head>

<<:  Pure CSS drop-down menu

>>:  A brief discussion on the invalidation or implicit conversion of MySQL integer and string indexes

Recommend

40 CSS/JS style and functional technical processing

1- Styling dropdown select boxes - Modify the dro...

JavaScript Timer Details

Table of contents 1. Brief Introduction 2. setInt...

Detailed explanation of non-parent-child component communication in Vue3

Table of contents First method App.vue Home.vue H...

10 Deadly Semantic Mistakes in Web Typography

<br />This is from the content of Web front-...

HTML Tutorial: title attribute and alt attribute

XHTML is the basis of CSS layout. jb51.net has al...

A brief discussion on MySQL select optimization solution

Table of contents Examples from real life Slow qu...

Detailed explanation of mixed inheritance in Vue

Table of contents The effect of mixed inheritance...

Uncommon but useful tags in Xhtml

Xhtml has many tags that are not commonly used but...

Summary of how to modify the root password in MySQL 5.7 and MySQL 8.0

MySQL 5.7 version: Method 1: Use the SET PASSWORD...

Vue implements irregular screenshots

Table of contents Image capture through svg CSS p...

How to solve the error "ERROR 1045 (28000)" when logging in to MySQL

Today, I logged into the server and prepared to m...

Detailed tutorial on compiling and installing python3.6 on linux

1. First go to the official website https://www.p...

Vue implements small notepad function

This article example shares the specific code of ...

JavaScript implements double-ended queue

This article example shares the specific code of ...