commonHead.jsp 886 B

123456789101112131415161718192021
  1. <%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="utf-8"%>
  2. <%@include file="/WEB-INF/jsp/common/commonInclude.jsp" %>
  3. <%--定义页面文档类型以及使用的字符集,浏览器会根据此来调用相应的字符集显示页面内容--%>
  4. <meta http-equiv="Content-Type" content="text/html;charset=utf-8">
  5. <%--IE=edge告诉IE使用最新的引擎渲染网页,chrome=1则可以激活Chrome Frame.--%>
  6. <meta http-equiv="X-UA-Compatible" content="IE=Edge,chrome=1">
  7. <meta name="viewport" content="width=device-width, initial-scale=1">
  8. <link rel="stylesheet" href="${staticRoot}/css/reset.css">
  9. <link rel="stylesheet" href="${staticRoot}/css/bootstrap.min.css">
  10. <head>
  11. <link rel="icon" href="${staticRoot}/images/logo.png" type="image/x-icon" />
  12. <link rel="shortcut icon" href="${staticRoot}/images/logo.png" type="image/x-icon" />
  13. </head>