welcome.jsp 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. <%@ page language="java" contentType="text/html; charset=UTF-8"
  2. pageEncoding="UTF-8"%>
  3. <!DOCTYPE html>
  4. <html>
  5. <head>
  6. <meta charset="UTF-8">
  7. <title>深圳信息职业技术学院校运会系统</title>
  8. <style type="text/css">
  9. *{ margin: 0;
  10. padding: 0;
  11. }
  12. html {
  13. background: linear-gradient(to top right, white 0%, skyblue 98%, blue 100%);
  14. font-family: "宋体";
  15. background-repeat: no-repeat;
  16. width: 100%;
  17. height: 100%;
  18. }
  19. h1{
  20. color: white;
  21. margin-left: 20px;
  22. margin-top: 15px;
  23. }
  24. h4{ color: white;
  25. margin-left: 20px;
  26. }
  27. .a{
  28. height: 20px;
  29. width: 95%;
  30. background: linear-gradient(to bottom, white 25%, gray 100%);
  31. margin-top: 10px;
  32. margin-left: 20px;
  33. }
  34. p{
  35. margin: 30px 0 0 500px;
  36. font-size: 20px;
  37. }
  38. </style>
  39. </head>
  40. <body>
  41. <h1>
  42. 欢迎你登陆深圳信息职业技术学院校运会系统
  43. </h1>
  44. <h4>Welcome to Shenzhen Institute of Information Technology</h4>
  45. <div class="a"></div>
  46. <p>欢迎进入本系统!请启用下面功能:</p >
  47. <p>
  48. <a href="query.jsp">查询成绩</a> <a href="baoming.jsp">报名运动会</a>
  49. </p >
  50. </body>
  51. </html>