HTML页面模板代码

作者声明:本博客中所写的文章,都是博主自学过程的笔记,参考了很多的学习资料,学习资料和笔记会注明出处,所有的内容都以交流学习为主。有不正确的地方,欢迎批评指正

 

HTML页面模板代码

常用的页面模板

DOCTYPE html>
<html lang="en">

<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <meta http-equiv="X-UA-Compatible" content="ie=edge">

  <link rel="shortcut icon" href="/favicon.ico" />
  <link rel="bookmark" href="/favicon.ico" type="image/x-icon"/>
  
  
  <meta http-equiv="Expires" content="-1">
  
  <meta http-equiv="Cache-Control" content="no-cache">
  
  <meta http-equiv="Pragma" content="no-cache">

  
  <meta name="author" content="aicoder.com">
  
  <meta name="apple-mobile-web-app-capable" content="yes">
  
  <meta name="apple-mobile-web-app-status-bar-style" content="black">
  
  <meta content="yes" name="apple-touch-fullscreen" />

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

  
  
  <meta name="full-screen" content="yes">
  
  <meta name="browsermode" content="application">

  
  
  <meta name="x5-fullscreen" content="true">
  
  <meta name="x5-page-mode" content="app">
  <meta name="App-Config" content="fullscreen=yes,useHistoryState=yes,transition=yes" />


  
  

  
  
  
  
  <link rel="stylesheet" href="./lib/swiper/css/swiper.min.css">
  <link rel="stylesheet" href="./font/font-shop/iconfont.css">
  <link rel="stylesheet" href="./css/common.css">
  <link rel="stylesheet" href="./css/index.css">
  <script src="./js/rem.js">script>
  <title>优选网title>
head>

<body>
  
body>

html>

 

转载于:https://www.cnblogs.com/NightTiger/p/10259122.html

你可能感兴趣的:(HTML页面模板代码)