notice.jsp 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. <%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>
  2. <%
  3. String path = request.getContextPath();
  4. String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
  5. %>
  6. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
  7. <html>
  8. <head>
  9. <base href="<%=basePath%>">
  10. <title>公告</title>
  11. <meta http-equiv="pragma" content="no-cache">
  12. <meta http-equiv="cache-control" content="no-cache">
  13. <meta http-equiv="expires" content="0">
  14. <meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
  15. <meta http-equiv="description" content="This is my page">
  16. <style type="text/css">
  17. body{
  18. background-color: #eee;
  19. }
  20. .title{
  21. font-size: 38px;
  22. font-weight: 600;
  23. width:auto;
  24. height: 30%;
  25. display: flex;
  26. justify-content: center;
  27. align-items: center;
  28. }
  29. .content{
  30. text-indent: 2em;
  31. font-size: 28px;
  32. font-weight: 500;
  33. width:900px;
  34. text-align: left;
  35. height: auto;
  36. padding-top:20px;
  37. display: flex;
  38. align-items: center;
  39. letter-spacing:1px;
  40. }
  41. </style>
  42. </head>
  43. <body>
  44. <center>
  45. <div class="title" >
  46. 关于气瓶电子标签监管系统服务器关闭的通知
  47. </div>
  48. <div class="content">
  49. 2021年6月30日至2021年7月2日期间,宁夏气瓶电子标签监管系统服务器将进行维护、升级,届时气瓶电子标签监管系统所有客户端、网站将无法访问,手持无法联网使用。
  50. </div>
  51. <div class="content">
  52. 被关闭的服务器将于2021年7月3日恢复正常。
  53. </div>
  54. <div class="content">
  55. 不便之处,敬请谅解!
  56. </div>
  57. </center>
  58. </body>
  59. </html>