| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- <%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>
- <%
- String path = request.getContextPath();
- String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
- %>
- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
- <html>
- <head>
- <base href="<%=basePath%>">
-
- <title>公告</title>
-
- <meta http-equiv="pragma" content="no-cache">
- <meta http-equiv="cache-control" content="no-cache">
- <meta http-equiv="expires" content="0">
- <meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
- <meta http-equiv="description" content="This is my page">
- <style type="text/css">
- body{
- background-color: #eee;
- }
- .title{
- font-size: 38px;
- font-weight: 600;
- width:auto;
- height: 30%;
- display: flex;
- justify-content: center;
- align-items: center;
- }
- .content{
- text-indent: 2em;
- font-size: 28px;
- font-weight: 500;
- width:900px;
- text-align: left;
- height: auto;
- padding-top:20px;
- display: flex;
- align-items: center;
- letter-spacing:1px;
- }
- </style>
- </head>
-
- <body>
- <center>
- <div class="title" >
- 关于气瓶电子标签监管系统服务器关闭的通知
- </div>
- <div class="content">
- 2021年6月30日至2021年7月2日期间,宁夏气瓶电子标签监管系统服务器将进行维护、升级,届时气瓶电子标签监管系统所有客户端、网站将无法访问,手持无法联网使用。
- </div>
- <div class="content">
- 被关闭的服务器将于2021年7月3日恢复正常。
- </div>
- <div class="content">
- 不便之处,敬请谅解!
- </div>
- </center>
- </body>
- </html>
|