1、HTML5標准模版
<!DOCTYPE html> <html lang="zh-CN"> <head> <meta charset="UTF-8"> <title>HTML5標准模版</title> </head> <body> </body> </html>
2、移動端
<!DOCTYPE html> <html lang="zh-CN"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no, shrink-to-fit=no" > <meta name="format-detection" content="telephone=no" > <title>移動端HTML模版</title> <!-- S 本地調試,根據開發模式選擇調試方式 --> <link rel="stylesheet" href="css/index.css" > </head> <body> </body> </html>
3、PC端
<!DOCTYPE html> <html lang="zh-CN"> <head> <meta charset="UTF-8"> <meta name="keywords" content="your keywords"> <meta name="description" content="your description"> <meta name="author" content="author,email address"> <meta name="robots" content="index,follow"> <meta http-equiv="X-UA-Compatible" content="IE=Edge,chrome=1"> <meta name="renderer" content="ie-stand"> <title>PC端HTML模版</title> <!-- S 本地調試,根據開發模式選擇調試方式,請開發刪除 --> <link rel="stylesheet" href="css/index.css" > <!-- /本地調試方式 --> </head> <body> </body> </html>